Awesome
Elixirscript Starter Kit
Working ElixirScript starter kit with minimal "Hello World" functionality.
Uses Parcel under the hood for bundling, serving, and hot reloading.
Running
mix deps.get
mix compile
cd js
yarn install
yarn serve
You should see the output produced by ElixirscriptDemo.hello()
in the console.
Build production bundle
mix deps.get
mix compile
cd js
yarn install
yarn build
Your HTML and JS bundle will be in the ./js/dist/
dir.