
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Take command of your media
shougun is a programmable, extensible, embeddable, media management framework. That's a lot of adjectives, but it's intended for a lot of uses.
My primary use is integration with a voice assistant and a Chromecast, which looks like this:
// ShougunBuilder is a convenient, typesafe, fluent interface for building a
// Shougun instance with whatever features you desire.
const shougun = await ShougunBuilder.create()
// play back on a specific chromecast device
.playOnNamedChromecast("Family Room TV")
// call this multiple times to scan multiple local folders
.scanFolder("~/Movies")
// adds support for querying configured Babbling apps and considering those
// results in findMedia
.includeBabblingMedia()
// track episode watch progress in a sqlite db
.trackInSqlite("shougun.db")
// use a phonetic matcher for queries, suitable for use with voice assistants
.matchByPhonetics()
// allow Shougun to keep the Node process alive; since this is for
// a long-running server, we ought to do this since it enables various
// internal optimizations
.allowProcessKeepalive()
// construct the instance
.build();
onPlaybackRequest(async (query: string) => {
// find the best match to the query from all configured sources
const found = await shougun.findMedia(query);
if (!found) {
throw new Error("no match");
}
// play the found media on the configured output surface (a Chromecast).
// if `found` appears to be a TV series, Shougun will automatically resume
// wherever you left off
console.log("Playing", found);
await shougun.play(found);
});
FAQs
Take command of your media
The npm package shougun receives a total of 65 weekly downloads. As such, shougun popularity was classified as not popular.
We found that shougun demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.