This is a Yeoman generator to get you up and running with Browserify based projects. Thie generator is inspired by Beefy.
Beefy is AWESOME!!! However sometimes it's nice to get an entire project scaffold from which you can get up and running quickly.
The aim of this generator is to be as minimal as possible. The aim is to bring as little dependencies as possible to get up and running.
For useability this generator uses Grunt and a Connect server to run your project.
npm install -g yo
Install the the browserify generator:
npm i -g generator-ify
Create a directory and run the generator:
mkdir your_project && cd your_project
yo ify
If this is your first time using the generator just hit enter at all the prompts.
Almost there just run grunt
:
grunt
Running grunt
will continually Browserify
the index.js
in the root directory of
the project.
You can see the result by going to http://localhost:8000
in your Browser.
MIT