You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ego is an [ERb](http://ruby-doc.org/stdlib-2.1.0/libdoc/erb/rdoc/ERB.html) style templating language for Go. It works by transpiling templates into pure Go and including them at compile time. These templates are light wrappers around the Go language itself.
5
5
6
-
## Usage
6
+
## Install
7
+
8
+
You can find release builds of ego for Mac OS & Linux on the [Releases page](https://github.com/benbjohnson/ego/releases).
7
9
8
-
To install ego:
10
+
To install ego from source, you can run this command outside of the `GOPATH`:
9
11
10
12
```sh
11
13
$ go get github.com/benbjohnson/ego/...
12
14
```
13
15
14
-
Then run `ego` on a directory. Recursively traverse the directory structure and generate Go files for all matching `.ego` files.
16
+
17
+
## Usage
18
+
19
+
Run `ego` on a directory. Recursively traverse the directory structure and generate Go files for all matching `.ego` files.
0 commit comments