1.2.0 • Published 9 years ago

npm-script v1.2.0

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

npm-script

Generate spawn options for running package.json scripts

Example

Emulates npm run-script $SCRIPT_NAME

NOTE: Does not add in the log wrapping like NPM

var lifecycle = process.argv[2];
getNPMSpawnOptions(process.cwd(), lifecycle, {
  defaultScript: {
    start: 'node server.js',
    preinstall: '[ -f wscript] && (node-waf clean || true; node-waf configure build)'
  }[lifecycle],
  env: {
    PATH: process.env.PATH
  },
  fs?: fs_api // defaults to require('fs') used for remote system stuff
}, function (err, spawnOptions) {
  var script = require('child_process').spawn.apply(null, spawnOptions);
  script.stderr.pipe(process.stderr);
  script.stdout.pipe(process.stdout);
  script.on('exit', process.exit.bind(process));
});

Differences from NPM

  1. Does not add in defaults for scripts like npm run-scripts start (use options.defaultScript)
  2. Does not auto add in the current path, set it in options.env (will append if already has a value)
  3. Does not change users for you, use something like suspawn

See

npm help scripts

1.2.0

9 years ago

1.1.0

9 years ago

1.0.0

10 years ago

0.1.0

12 years ago