1.2.1 • Published 10 years ago

npm-available v1.2.1

Weekly downloads
5
License
MIT
Repository
github
Last release
10 years ago

npm-available

Check if a given module name is available on npm. Available as CLI and module API.

Build status js-standard-style

Installation

To use on the command line, install globally using:

npm install -g npm-available

To use programmatically, install locally:

npm install --save npm-available

CLI Usage

After you've installed npm-available globally, just run:

$ npm-available my-awesome-module
Too late! my-awesome-module is taken :(

Options

npm-available [options] [name]

Where name is the name of a module you whish to check.

Options:

  --help, -h     show this help
  --version, -v  show version
  --quiet, -q    don't output anything (check the exit code instead)

The command will exit with a non-zero exit code if the module name is already taken.

Programmatic Usage

var npmAvailable = require('npm-available')

npmAvailable('my-awesome-module', function (err, available) {
  if (err) throw err
  if (available) console.log('%s is available', name)
  else console.log('%s is already taken', name)
})

License

MIT

1.2.1

10 years ago

1.2.0

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago