
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
block run code Execute code block in sequence by channels
npm install block-run
name | type | require | default | Description |
---|---|---|---|---|
channel | string | must | null | block code channel |
func | Function or GeneratorFunction or AsyncFunction | must | null | block code function |
funTimeout | number | option | -1 | function timeout |
const assert = require('assert');
const co = require('co');
const BlockRun = require('block-run');
//Promise
BlockRun.run('testChannel1',()=>{
return 1;
}).then((res)=>{
assert.equal(res,1,'Promise failed');
}).catch((e)=>{
throw e;
});
let p1 =(index,time)=>{
return new Promise((res,rej)=>{
setTimeout(()=>{
res(index);
},time)
});
}
// testChannel2 make two async function in sequence
//co yield
co(function*(){
try{
for(let i = 0;i<10;i++)
{
let res = yield BlockRun.run('testChannel2',function* (){
return yield p1(i,2000);
});
assert.equal(res,i,'co yield failed'+res);
}
} catch(e)
{
throw e;
}
});
//async
(async () =>{
try{
for(let i = 0;i<10;i++)
{
let res = await BlockRun.run('testChannel3',async ()=>{
return await p1(i,2000);
});
assert.equal(res,i,'async failed'+res);
}
} catch(e)
{
throw e;
}
})();
let p1 =(index,time)=>{
return new Promise((res,rej)=>{
setTimeout(()=>{
res(index);
},time)
});
}
(async () =>{
for(let i = 0;i<10;i++)
{
console.log(await p1(i,1000))
}
})();
(async () =>{
for(let i = 0;i<10;i++)
{
console.log(await p1(i,1000))
}
})();
one seconds two number
two async function run at the same time
const BlockRun = require('block-run');
let p1 =(index,time)=>{
return new Promise((res,rej)=>{
setTimeout(()=>{
res(index);
},time)
});
}
(async () =>{
for(let i = 0;i<10;i++)
{
let res = await BlockRun.run('sameChannel',async ()=>{
return await p1(i,1000);
});
console.log(res)
}
})();
(async () =>{
for(let i = 0;i<10;i++)
{
let res = await BlockRun.run('sameChannel',async ()=>{
return await p1(i,1000);
});
console.log(res)
}
})();
one seconds one number
two async function run in sequence by same channel name
FAQs
block run code
The npm package block-run receives a total of 0 weekly downloads. As such, block-run popularity was classified as not popular.
We found that block-run 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
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.