Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rush

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rush

The ultimate solution of writing asyncronous code in a beautiful way.

  • 0.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Rush

The ultimate solution of writing asyncronous code in a beautiful way.

Installation

npm install rush

Example

var rush = require('rush');
var fs = require('fs');

rush({
	n: 0
	data: []
})(function() {
	this.n++;
	
	fs.readFile('file1.txt', this(function(data) {
		this.data.push(data);
	}));
	
	fs.readFile('file2.txt', this(function(data) {
		this.data.push(data);
	}));
})(function() {
	this.n++;
	
	fs.readFile('file3.txt', this(function(data) {
		this.data.push(data);
	}));
})(function(err) {
	if (err) {
		// Handle the error.
		return;
	}

	console.log(n); // => 2

	// this.data should have 3 items:
	// (data of) file1, file2, file3 or file2, file1, file3.
})();

Important

Multiple initializers are not working as intended currently.

You can use multiple initializers (passing of an object to Rush), but all these objects will be used like as you passed a single merged object at the beginning of the chain.

Don't rely on such behaviour, it will be fixed later.

rush({
	x: 2
})(function() {
	console.log(x); // Logs 3, but not 2!
})({
	x: 3
})(function() {
	console.log(x); // Logs 3 as intended.
})(function(err) {
	check(!err);
})();

You can use regular blocks instead of initializers, as blocks are executed strictly one after another (if there are no errors in them).

License

MIT

Keywords

FAQs

Package last updated on 17 May 2012

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc