generator-libco
v0.1.2
Published
"Library in CoffeeScript" generator for Yeoman.
Readme
generator-libco 
A generator for Yeoman intended for library project (written in CoffeeScript) skeleton generation in order to reduce tedious repetitive work.
Purpose
yo libco
This generator creates following folders:
- modules
- tests/data
- tests/modules
It also creates following files:
- modules/Log.coffee
- tests/data/data.txt
- .gitattributes
- .gitignore
- .travis.yml
- README.md
- package.json
Package.json is fully initialized including test NPM task which runs all tests with coverage report generation at the end.
yo libco:module
This subgenerator creates following files:
- modules/.coffee
- tests/modules/Tests.coffee
Getting Started
Install generator-libco using NPM
npm install generator-libco -gCreate folder for your project
mkdir mylib && cd $_Run libco generator
yo libcoOnce library skeleton is generated, start module (unit) creation
yo libco:module Entity