Install yeoman and the ractive-foundation generator:
npm install -g yo
npm install -g generator-ractive-foundation
mkdir my-project
cd my-porject
yo ractive-foundation
This will initialize you new ractive-foundation project
yo ractive-foundation:component
This will ask you for you directory structure to store your components (defaulting to src/components), and then it will ask for the name of your component.
If you want to contrubute / develop generator-ractive-foundation the following can be helpful
# globally install yeoman
npm install -g yo
git clone git@github.com:ractive-foundation/generator-ractive-foundation.git
cd generator-ractive-foundation
npm install
npm link
This will allow you to work on the generator-ractive-foundation code and see
your changes when ever you runt yo ractive-foundation
.