Socket
Socket
Sign inDemoInstall

generator-node-npm

Package Overview
Dependencies
382
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    generator-node-npm

Create npm modules using `npm` as the build tool!


Version published
Weekly downloads
12
increased by500%
Maintainers
1
Install size
30.4 MB
Created
Weekly downloads
 

Readme

Source

generator-node-npm Build Status

NPM

Create npm modules using npm as the build tool!

Install

$ npm install -g generator-node-npm

Usage

$ yo node-npm

Note that this template will generate files in the current directory, so be sure to change to a new directory first if you don't want to overwrite existing files.

Directory structure

Generated with yo node-npm inside a new project (cli/codeCoverage modes turned on)

.
├── README.md
├── bin (if required)
├── index.js
├── lib
│   └── <main file>.js
├── package.json
└── test
    └── index.js

Available Tasks

You can see the list of all available tasks running npm run on the generated project (below is the scripts field of package.json generated with the cli/codeCoverage modes turned on)

  "scripts": {
    "istanbul": "istanbul cover test/index.js",
    "lint": "standard",
    "test": "node test/index.js | tap-spec",
    "test:watch": "gaze 'npm test' 'test/**/*.js' 'lib/**/*.js' 'index.js'",
    "start": "npm run test:watch"
  }

npm start

Alias for npm test:watch

npm test

Executes the tests located in test/index.js, powered by substack/tape

npm run test:watch

Watches the content of index.js, lib/ and test/, if the content of any file changes then npm test is executed

npm run lint

Lints index.js, test/, lib/ (powered by feross/standard)

npm run istanbul (only when the mode codeCoverage is turned on)

Generates a coverage report of the files tested by test/index.js, additionally when a build is triggered on TravisCI the coverage report will be sent to Coveralls

Useful npm commands that you should know

  • npm version major|minor|patch bumps the package version
  • npm run lists all available tasks

Why?

This project is heavily inspired by this article by Keith Cirkel where he describes that the existing build system tools attempt to solve the problems that exist among them "covering up the inadequacies of the other tools while also surfacing their own".

James Halliday who is the creator of many awesome packages like browserify and tape also wrote an article where he points out that the command npm run is "perfectly adequate for everything while maintaining a very tiny configuration footprint."

Articles to read:

Inspiration projects

Development

Run the tests with npm test

FAQ

The generator fails if there's no internet connection, why?

The generator uses the package npm-name to check whether the package name is available on npm, to disable the check define the env variable SKIP

SKIP=true yo node-npm

License

2015 MIT © Mauricio Poppe

Keywords

FAQs

Last updated on 13 Oct 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc