JSPM

generator-nodule

1.3.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q34399F

A Yeoman generator for nodejs modules

Package Exports

  • generator-nodule

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (generator-nodule) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

generator-nodule

A node.js module generator for Yeoman.

Build Status

Installation

To install generator-nodule from npm, run:

$ npm install -g generator-nodule

Finally, initiate the generator:

$ yo nodule

This generator will install the following files:

  • package-json.
  • Gruntfile.js : 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 : for continous integration.
  • .gitignore : ignore the usual stuff.
  • LICENSE - MIT license initialized with your details.
  • README.md - Initialized with your details and travis-ci badges.
  • index.js - dummy javascript file
  • test/index.js - unit tests using mocha and chai