JSPM

moniker

0.1.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 29708
    • Score
      100M100P100Q143484F

    Generate random names.

    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-hands

    Installation

    Install Moniker using NPM:

    npm install moniker