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.
- Host: GitHub
- URL: https://github.com/guidao/exs
- Owner: guidao
- Created: 2018-08-21T03:50:13.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-25T09:59:03.000Z (over 7 years ago)
- Last Synced: 2025-08-12T03:31:42.129Z (6 months ago)
- Topics: elixir, escript, script
- Language: Elixir
- Homepage:
- Size: 1.28 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```