
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
jseventqueue
Advanced tools
[](https://travis-ci.org/Kirusi/jseventqueue) [](https://coveralls.
A JavaScript (ES6) library for serializing event processing. It is intended to be used by multiple producers and a single consumer. Event processing is using ayns/await mechanism, which helps to process events one-at-a-time.
Reading from queue using for await
loop:
const EventQueue = require('jseventqueue');
let queue = new EventQueue();
setTimeout(() => {
queue.send(0);
queue.send(1);
queue.send(2);
queue.send(3);
queue.shutdown();
}, 15);
let results = [];
for await (let data of queue) {
results.push(data);
}
// results contain [0, 1, 2, 3]
If for some reason one can't use for await
loop then a similar loop can be implemented using while
:
const EventQueue = require('jseventqueue');
let queue = new EventQueue();
setTimeout(() => {
queue.send(0);
queue.send(1);
queue.send(2);
queue.send(3);
queue.shutdown();
}, 15);
let results = [];
let data;
// while loop checks whether queue was shutdown by comparing returned value
// to a special data member of the queue object
while ((data = await queue.receive()) !== queue.end) {
results.push(data);
}
// results contain [0, 1, 2, 3]
Ad-hoc reading and writing to the queue:
const EventQueue = require('jseventqueue');
let queue = new EventQueue();
setTimeout(() => {
queue.send('message 1');
queue.send('message 2');
}, 15);
// receive will wait until a message is received
let msg1 = await queue.receive();
let msg2 = await queue.receive();
Using npm:
$ npm i --save jseventqueue
FAQs
[](https://travis-ci.org/Kirusi/jseventqueue) [](https://coveralls.
The npm package jseventqueue receives a total of 0 weekly downloads. As such, jseventqueue popularity was classified as not popular.
We found that jseventqueue 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.