New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

livejs

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

livejs

a common library for async/promise, simple and powerful

latest
Source
npmnpm
Version
0.1.10
Version published
Maintainers
1
Created
Source

livejs

Build Status Coverage Status

Introduce

1.powerful promise library. simple and faster!
2.use to do something like promise.
3.shortcut name use $l.

test case will coming soon...
more function will coming soon...

Download

Check out [https://github.com/microlv/livejs.git];
GitHub: https://github.com/microlv/livejs/;
Wiki: http://microlv.github.io/livejs;

Features

1.like q/async, but the code is simple and powerful and useful.
2.every function will inject a argument name 'defer', you can use it to resolve/reject.
3.detect the defer.err to see parent function has error or not.

Support

Chrome, Nodejs

Installation

npm install livejs --save

Usage

sample use:

$l(function (d) {
	setTimeout(function () {
		console.log('function 1');
		d.resolve('pass data to next function!');
		console.log('function 1 step 2');
	}, 0);
	console.log('function 1 step 1');
}).then(function (d, data) {
	console.log('function 2');
	console.log(data);
	d.reject();
}).then(function () {
	console.log('function 3,function2 resolve will go here');
}, function () {
	console.log('function 3 function2 reject will go here');
}).then(function () {
	console.log('function 4');
});
$l(function (d) {
    console.log('factory task 1');
    d.resolve();
}).then(function (d) {
    console.log('factory task 2');
    d.resolve();
}).series([
    function (d) {
        console.log('series task 3');
        d.resolve();
    }, function (d) {
        console.log('series task 4');
        d.resolve();
    }
], function (d) {
    console.log('series task 5');
}).then(function () {
    //why here don't work??
    //because task 5 don't resolve the it!!!
    console.log('I can\'t execute');
});

series:

$l.series([function (d) {
    //use resolve will make the series execute next task!
    d.resolve();

    //step pass data
    var passData = {hello: 'world'};
    d.resolve(passData)

    //reject will make series stop.
    d.reject();

}], function (d, data) {

    //I can get the data from //step pass data
    console.log(data);
});

series example:

$l.series([
	function (d) {
		console.log('series 1');
		setTimeout(function () {
			d.resolve('series 2 finish!');
		}, 0);
	},
	function (d) {
		console.log('series 2');
		setTimeout(function () {
			d.resolve('series 2 finish!');
		}, 0);
	},
	function (d) {
		console.log('series 3');
		setTimeout(function () {
			d.resolve('series 3 finish!');
		}, 0);
	}
], function (d,result) {
	console.log('finish');
	d.resolve();
}).then(function (d) {
	console.log('then start');
});

Author

Andy.lv@live.com;
Any problem contact with me.

Contributors

Keywords

q

FAQs

Package last updated on 09 Feb 2015

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