Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
glassfiber
Advanced tools
Glassfiber is an intuitive Javascript co-routine library implemented using Promises.
It runs inside any webbrowser or NodeJS environment supporting at least ECMAScript ES2018.
Minified and gzip-compressed, it is less than 1 KB of code.
It has zero dependencies on other modules.
Example:
var Glassfiber = require("glassfiber.min.js");
async function threadA(a, b) {
console.log("A starting");
await Glassfiber.yield();
console.log(a);
await Glassfiber.sleep(1000);
await Glassfiber.yield();
console.log(b);
await Glassfiber.yield();
console.log("A done");
}
async function threadB(a, b, c) {
console.log("B starting");
await Glassfiber.yield();
console.log(a);
await Glassfiber.yield();
await Glassfiber.sleep(500);
console.log(b);
await Glassfiber.yield();
console.log(c);
await Glassfiber.yield();
console.log("B done");
}
async function threadC(a) {
console.log("C starting");
await Glassfiber.yield();
await Glassfiber.sleep(250);
console.log(a);
await Glassfiber.yield();
console.log("C done");
}
async function main() {
var p1 = Glassfiber.spawn( threadA(12, 13) );
var p2 = Glassfiber.spawn( threadB(14, 15, 16) );
var p3 = Glassfiber.spawn( threadC(17) );
await Promise.all([p1, p2, p3]);
}
main();
Specified parameters:
priority
is an optional priorityms
delay in millisecondsExposed API-list (in NodeJS and the browser):
Glassfiber.spawn(promise)
Glassfiber.yield(priority?)
Glassfiber.sleep(ms)
Card-carrying member of the zerodeps
movement.
FAQs
Co-routines implemented using Promises
The npm package glassfiber receives a total of 2 weekly downloads. As such, glassfiber popularity was classified as not popular.
We found that glassfiber 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.