GithubHelp home page GithubHelp logo

isabella232 / shortstop-handlers Goto Github PK

View Code? Open in Web Editor NEW

This project forked from krakenjs/shortstop-handlers

0.0 0.0 0.0 24 KB

Common protocol handlers for use with the shortstop node module.

License: Other

JavaScript 100.00%

shortstop-handlers's Introduction

shortstop-handlers

Build Status

A common set of handlers for use with shortstop.

NOTE: As of v1.0 shortstop-handlers works best with shortstop >=1.0. This is due to the fact that as of shortstop v1.0 async handlers are now supported and have subsequently been added to this module.

var shortstop = require('shortstop'),
    handlers = require('shortstop-handlers');


var resolver, json;

resolver = shortstop.create();
resolver.use('path',   handlers.path(__dirname));
resolver.use('file',   handlers.file(__dirname));
resolver.use('base64', handlers.base64());
resolver.use('env',    handlers.env());
resolver.use('require', handlers.require(__dirname));
resolver.use('exec',   handlers.exec(__dirname));

resolver.resolve(require('./myfile'), function (err, data) {
    // data
});

API

handlers.path([basedir])

  • basedir (String, optional) - The base path used for resolving relative path values. Defaults to caller dirname.

Creates a handler that can be given to shortstop to resolve file paths.

var foo = {
    "mydir": "path:./lib/dir"
};

var resolver = shortstop.create();
resolver.use('path', handlers.path());
resolver.resolve(foo, function (err, data) {
  data.mydir; // `/path/to/my/project/lib/dir`
});

handlers.file([basedir], [options])

  • basedir (String, optional) - The base path used for resolving relative path values. Defaults to caller dirname.
  • options (Object, optional) - Options object provided to fs.readFile.

Creates a handler which resolves the provided value to the basedir and returns the contents of the file as a Buffer.

var foo = {
    "cert": "file:./cert.pem"
};

var resolver = shortstop.create();
resolver.use('file', handlers.file());
resolver.resolve(foo, function (err, data) {
    foo.cert; // <Buffer 48 65 6c 6c 6f 2c 20 77 6f72 6c 64 21>
});

handlers.base64()

Creates a handler which will return a buffer containing the content of the base64-encoded string.

var foo = {
    "key": "base64:SGVsbG8sIHdvcmxkIQ=="
};

var resolver = shortstop.create();
resolver.use('base64', handlers.base64());
resolver.resolve(foo, function (err, data) {
    data.key; // <Buffer 48 65 6c 6c 6f 2c 20 77 6f72 6c 64 21>
    data.key.toString('utf8'); // Hello, world!
});

handlers.env()

Creates a handler which will resolve the provided value as an environment variable, optionally casting the value using the provided filter. Supported filters are '|d', '|b', and '|!b' which will cast to Number and Boolean types respectively.

process.env.HOST = 'localhost';
process.env.PORT = '8000';
process.env.ENABLED = 'true';
process.env.FALSY = 'false'; // or '', or '0'

var foo = {
    "bar": "env:HOST",
    "baz": "env:PORT|d",
    "bam": "env:ENABLED|b",
    "bag": "env:FALSY|b"
    "bat": "env:FALSY|!b"
};

var resolver = shortstop.create();
resolver.use('env', handlers.env());
resolver.resolve(foo, function (err, data) {
    data.bar; // 'localhost'
    data.baz; // 8000
    data.bam; // true
    data.bag; // false
    data.bat; // true
});

handlers.require([basedir])

  • basedir (String, optional) - The base path used for resolving relative path values. Defaults to caller dirname.

Creates a handler which resolves and loads, and returns the specified module.

var foo = {
    "path": "require:path",
    "minimist": "require:minimist",
    "mymodule": "require:./mymodule"
    "json": "require:../config/myjson"
};

var resolver = shortstop.create();
resolver.use('require', handlers.require());
resolver.resolve(foo, function (err, data) {
    data.path; // Node core `path` module
    data.minimist; // `minimist` module as loaded from node_modules
    data.mymodule; // module as loaded from `./mymodule.js`
    data.json; // JS object as loaded from `../config/myjson.json`
});

handlers.exec([basedir])

  • basedir (String, optional) - The base path used for resolving relative path values. Defaults to caller dirname.

Creates a handler which resolves and loads the specified module, executing the method (if specified) or the module itself, using the return value as the resulting value. The value should have the format {module}(#{method})?. If no function is able to be found this handler will throw with an error.

var foo = {
    "item1": "exec:./mymodule#create"
    "item2": "exec:./myothermodule"
};

var resolver = shortstop.create();
resolver.use('exec', handlers.exec(__dirname));
resolver.resolve(foo, function (err, data) {
    data.item1; // the result of calling mymodule.create()
    data.item2; // the result of calling myothermodule()
});

handlers.glob([basedir|options])

Creates a handler which match files using the patterns the shell uses.

var foo = {
    "files": "glob:**/*.js"
};

var resolver = shortstop.create();
resolver.use('glob', handlers.glob(__dirname));
resolver.resolve(foo, function (err, data) {
    data.files[0]; // '/my/dirname/foo/index.js';
    data.files[1]; // '/my/dirname/index.js';
});

shortstop-handlers's People

Contributors

totherik avatar pvenkatakrishnan avatar jasisk avatar subeeshcbabu avatar gabrielcsapo avatar jeffharrell avatar tlivings avatar tuckbick avatar ryanwilliamquinn avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.