
Research
Shai-Hulud Descends to Hades: Miasma Worm Campaign Spreads with New PyPI Wave
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.
@bigtest/parcel
Advanced tools
Control a parcel worker farm with visibility into key work events.
When parcel is running, it starts up a bunch of processes to do the actual work of compilation and bundling in parallel. This is what we want, but because of the way its implemented, it is possible that if shutdown happens too quickly, or while it is in the middle of a bundle, then it can leave a bunch of processes hanging around.
This solves the problem by wrapping an effection resource around a parcel process and killing it off, and all children whenever it passes out of scope.
Also, it isn't enough just to be running parcel, we have to know that
it is up and running, and when new builds are available. For this, the
parcel process implements the receive() method to get messages about
when a new build is available.
import { ParcelProcess } from '@bigtest/parcel';
function* start() {
// this operation does not complete until parcel is up and running
let parcel: ParcelProcess = yield ParcelProcess.create({
buildDir: './build',
srcPath: './tests/*.test.{js,ts}'
});
while (true) {
let message = yield parcel.receive({ type: "update" });
console.log('new build happened: ', message);
}
}
$ yarn start
$ yarn test
FAQs
Effection wrappers for working with parcel
We found that @bigtest/parcel 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.

Research
Socket found 37 malicious PyPI wheels that abuse Python startup hooks to launch a Bun-powered credential stealer tied to Mini Shai-Hulud/Miasma.

Security News
RubyGems and Bundler 4.0.13 introduced an opt-in cooldown feature that delays newly published gems during dependency resolution.

Security News
pnpm 11.5 now recognizes npm staged publish approvals in release metadata, preventing those releases from being mistaken for lower-trust package publishes.