Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

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

Open http://localhost:1234/

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.