1.3.0 • Published 9 years ago

generator-nodecli v1.3.0

Weekly downloads
4
License
-
Repository
github
Last release
9 years ago

generator-nodecli

A node.js cli app generator for Yeoman.

Build Status js-standard-style

Install

To install from npm, run:

$ npm install -g generator-nodecli

Usage

Initiate the generator:

$ yo nodecli

This generator will install the following files:

  • package-json - initialized with the answers to all your questions.
  • Gruntfile.js (if grunt is selected) - configured to use the following grunt modules:
    • grunt-complexity - show code complexity
    • grunt-contrib-watch - watch for changes then run tests
    • grunt-mocha-cli - run mocha tests
    • grunt-bump - easily release versions
  • .travis.yml - set up so you can push and get travis-ci continous integration tests.
  • .gitignore - ignore the usual stuff.
  • LICENSE - MIT license initialized with your details.
  • README.md - Initialized with your details and travis-ci badges.
  • index.js - Initial library file
  • test/index.js - unit test using mocha and chai