
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.
Headless music engine for the Notater ecosystem.
pnpm add notater
import { AudioEngine, type Pattern } from "notater";
const engine = new AudioEngine();
// Set tempo
engine.setBpm(120);
// Set pattern
engine.setPattern(myPattern);
// Register callback for step triggers
engine.setCallback((event) => {
console.log(`Track ${event.trackId} step triggered at ${event.time}`);
});
// Start playback (requires user gesture on web)
await engine.start();
// Stop
engine.stop();
import { patternToMidi, type Pattern } from "notater";
import fs from "fs";
const pattern: Pattern = {
id: "my-pattern",
name: "Demo Beat",
bars: 1,
tracks: [
/* ... */
],
};
const midiData = patternToMidi(pattern);
fs.writeFileSync("output.mid", midiData);
interface Pattern {
id: string;
name: string;
tracks: Track[];
bars: number;
}
interface Track {
id: string;
instrument: Instrument;
steps: Record<number, Step>;
length: number;
}
interface Step {
id: string;
index: number;
type: "on" | "off" | "hold";
velocity: number;
duration: number;
microTiming: number;
pitch?: string;
}
MIT
FAQs
Core music logic for Notater ecosystem
We found that notater 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.