Package Exports
- moniker
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (moniker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Moniker
A random name generator for Node.js.
Synopsis
To use Moniker, create a generator. Generators create random names
using dictionaries. Moniker has built-in noun, verb, and
adjective dictionaries, or you can create your own.
var Moniker = require('moniker');
var names = Moniker.generator([Moniker.adjective, Moniker.noun]);
console.log(names.choose());
// Example output: murky-handsInstallation
Install Moniker using NPM:
npm install moniker