Socket
Socket
Sign inDemoInstall

opset

Package Overview
Dependencies
4
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    opset

Set of runnable interdependent operations


Version published
Weekly downloads
1
decreased by-80%
Maintainers
1
Install size
0.982 MB
Created
Weekly downloads
 

Readme

Source

opset Build Status Code Climate

Set of runnable interdependent operations

NPM

Example

var OpSet = require('opset');
var UserModel = require('./models/user.js');
var BlogModel = require('./models/blog.js');

// declare set of interdependent operations
var blog = new OpSet('blog');

blog.set('username', 'edinella'); // already resolved values can be setted

blog.op('user', function() {
  return UserModel.findOne({username: 'edinella'}).exec(); // returns a promise
});

blog.op('userPosts', function(user) {
  return BlogModel.find({author: user.id}).exec();
});

// run userPosts operation, returns a promise
blog.run('userPosts').then(yep).fail(nope);

// handle results
function yep(result) {
  console.log(result);
}

// handle errors
function nope(err) {
  console.error(err);
}

How to use

Install with NPM:

npm install --save opset

Then require it:

var OpSet = require('opset');

API

OpSet(alias): constructor, create a new OpSet with an alias

To produce the instance, OpSet should be called with new operator.

var report = new OpSet('report');

set(token, value): alias for setCache() setCache(token, value): defines a resolved value for injection

Register the final value.

report.set('dateFormat', 'DD/MM/YYYY HH:mm:ss');

op(token, factoryFn): alias for operation() operation(token, factoryFn): defines a operation that generates a value for injection

To produce the instance, factoryFn will be called once (with instance context) and its result will be used.

The factoryFn function arguments should be the tokens of the operations that we need resolved here.

report.op('data', function(filters){
  return MyModel.find(filters).exec();
});

run(token): runs an operation, returns a promise

If any operation throws an error or gets rejected, and you omit the rejection handler, the execution will be stopped and error would be forwarded to this resultant promise.

// result is a promise
var myStats = report.run('stats');

// handle results
myStats.then(function(result) {
  console.log(result);
});

// handle errors, including those unhandled from inside operations
myStats.fail(function(err) {
  console.error(err);
});

Keywords

FAQs

Last updated on 23 May 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc