comercioeletronico-cotacao-api/node_modules/consign
Adler Neves 7f78b1d9eb little update 2017-04-25 01:56:54 -03:00
..
examples little update 2017-04-25 01:56:54 -03:00
lib little update 2017-04-25 01:56:54 -03:00
locale little update 2017-04-25 01:56:54 -03:00
test little update 2017-04-25 01:56:54 -03:00
.jshintrc little update 2017-04-25 01:56:54 -03:00
.npmignore little update 2017-04-25 01:56:54 -03:00
.travis.yml little update 2017-04-25 01:56:54 -03:00
LICENSE little update 2017-04-25 01:56:54 -03:00
README.md little update 2017-04-25 01:56:54 -03:00
index.js little update 2017-04-25 01:56:54 -03:00
package.json little update 2017-04-25 01:56:54 -03:00

README.md

Consign

Build Status

Autoload your scripts! the successor to express-load

Consign makes applications easier to develop with logical file separation and automatic script loading.

Consign can be used to autoload models, routes, schemas, configs, controllers, object maps... etc...

Usage

var consign = require('consign');

consign()
  .include('models')
  .then('controllers')
  .into(app);

// app.models.user
// app.models.company
// app.controllers.user
// app.controllers.company

Check out the examples or test folder for more!

Installation

$ npm install consign

Features

  • Autoload scripts
  • Supports order, includes and excludes
  • Made to supplement frameworks or scripts
  • Makes MVC applications easier to work with
  • Test driven
  • Fast, Light-weight with no external dependencies
  • Highly configurable

Options

The optional options object is passed in as a parameter to the main consign function.

Defaults

  consign({
    cwd: process.cwd(),
    locale: 'en-us',
    logger: console,
    verbose: true,
    extensions: [ '.js', '.json', '.node' ],
    loggingType: 'info'
  })

Logging

logger - Defaults to console, this can be switched out. verbose - On by default, set to false for no logging loggingType - Set the type of logging, defaults to info

Locale

Current supported locale (for logging output):

  • en-au
  • en-nz
  • en-us
  • fr-fr
  • pt-br
  • pl
  • zh-cn

Base Directory (cwd)

Consign will simply use a relative path from your current working directory, however sometimes you don't want heavily nested files included in the object chain, so you can set the cwd:

consign()
  .include('app') // ./app/controllers/user.js
  .into(app);

would result in:

app.app.controllers.user

so using the cwd option:

consign({cwd: 'app'})
  .include('app') // ./app/controllers/user.js
  .into(app);

would give us:

app.controllers.user

File Extensions

Defaults to an array containing .js, .json and .node, new ones are concatenated instead of replaced.

Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test

License

MIT