Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Counters example

How to build it

Install the dependencies.

npm install

Then go to either of the subdirectories and build the code with

browserify main.js -t babelify --outfile build.js

With live reloading,

npm install -g watchify browser-sync
watchify main.js -v -t babelify --outfile build.js \
  & browser-sync start --server --files="index.html, build.js"