0.2.8 • Published 7 years ago

puckages v0.2.8

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

node-puckages

npm version Travis Coverage Status

node package manager for node.js

Getting Started

Installation

$ npm install --save puckages

Usage

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 }))

API

You can find documentation here. All documentation has been generated from source code using the typedoc.

Verbose

This package uses debug module. So you can set environment variable to display verbose log messages.

$ DEBUG=puckages node myApp.js

Running Tests/Coverage

$ npm test # runs both test + coverage on source code

License

MIT

0.2.8

7 years ago

0.2.7

7 years ago

0.2.6

7 years ago

0.2.5

7 years ago

0.2.4

7 years ago

0.2.3

7 years ago

0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago