node package manager for node.js
$ npm install --save puckages
import { Package } from 'puckages';
// Create writable directory for package
Package.create('/path/to/package')
// Initialize package.json, this accepts parameters for configuration and options.
.then(p => p.init())
// Install a new package and save as dependency
.then(p => p.install('node-foo', { save: true }))
// Uninstall a package and update dependencies
.then(p => p.uninstall('node-foo', { save: true }))
You can find documentation here. All documentation has been generated from source code using the typedoc.
This package uses debug module. So you can set environment variable to display verbose log messages.
$ DEBUG=puckages node myApp.js
$ npm test # runs both test + coverage on source code
MIT
Generated using TypeDoc