
Security News
Feross on TBPN: How North Korea Hijacked Axios
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.
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...
Check out [https://github.com/microlv/livejs.git];
GitHub: https://github.com/microlv/livejs/;
Wiki: http://microlv.github.io/livejs;
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.
Chrome, Nodejs
npm install livejs --save
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');
});
Andy.lv@live.com;
Any problem contact with me.
FAQs
a common library for async/promise, simple and powerful
We found that livejs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.

Security News
OpenSSF has issued a high-severity advisory warning open source developers of an active Slack-based campaign using impersonation to deliver malware.

Research
/Security News
Malicious packages published to npm, PyPI, Go Modules, crates.io, and Packagist impersonate developer tooling to fetch staged malware, steal credentials and wallets, and enable remote access.