JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q27493F

A Yeoman generator for node.js modules

Package Exports

  • generator-nodejs

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-nodejs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

generator-nodejs

A node.js module scaffolding generator for Yeoman.

Build Status

Installation

To install generator-nodejs from npm, run:

$ npm install -g generator-nodejs

Finally, initiate the generator:

$ yo nodejs

generator-nodejs screenshot

This generator will install the following files:

  • package-json - initialized with the answers to all your questions.
  • Gruntfile.js - configured to use the following grunt modules:
    • grunt-complexity - show code complexity
    • grunt-contrib-jshint - run code through jshint
    • grunt-contrib-watch - watch for changes then run tests
    • grunt-mocha-cli - run mocha tests (because mocha -w sucks)
  • .jshintrc - with some sane defaults (for me anyway!)
  • .travis.yml - set up so you can push and get travis-ci continous integration tests.
  • .gitignore - ignore the usual cruft.
  • LICENSE - BSD-3-Clause initialized with your details.
  • README.md - Initialized with your details and travis-ci badges.
  • index.js - Initial library file
  • test/index.js - First mocha unit test