node-constants

0.0.2 • Public • Published

node-constants

A small library for defining module-level constants.

Check for further examples in the examples folder. Also, the source code is really small and well documented.

NOTE: newer versions of node use the name "constants" internally, which clobbers any attempt to use this library. As a result, I've had to rename to the more verbose, "node-constants".

Basic Usage

var define = require("node-constants")(exports);
// define is a function that binds "constants" to an object (commonly exports)

// a single constant
define("PI", 3.14);

// or multiple
define({
    DAYS_IN_WEEK: 7,
    SECONDS_IN_MINUTE: 60
});

Installation

npm install --save node-constants

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i node-constants

    Weekly Downloads

    1,606

    Version

    0.0.2

    License

    MIT

    Last publish

    Collaborators

    • dominicbarnes