An open API service indexing awesome lists of open source software.

https://github.com/guidao/exs

A command line to run ex file. No need create project.
https://github.com/guidao/exs

elixir escript script

Last synced: 5 months ago
JSON representation

A command line to run ex file. No need create project.

Awesome Lists containing this project

README

          

# Exs

**TODO: Add description**
- [ ] 支持启动应用
- [ ] 支持emacs编辑器

## Getting Start
```
$ git clone git@github.com:guidao/exs.git
$ mix escript.install
$ exs install
$ exs install cowboy
$ cat t.ex
defmodule T do
use Exs, deps: [:cowboy]

def main(args) do
IO.inspect(:cowboy.module_info())
end
end
$exs eval t.ex
```