
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.
Search, stream and download MP3s from MP3 Monkey.
$ npm install mp3monkey
var fs = require('fs'),
mp3monkey = require('mp3monkey');
mp3monkey('ty segall bag i\'m in', function (err, tracks) {
if (!err && tracks.length) {
tracks[0].song.pipe(fs.createWriteStream('./bag.mp3'));
}
});
Search the MP3 Monkey website and return a list of tracks.
terms is expected to be a string of search terms.
options is an optional object with the following properties:
{
host: 'https://mp3monkey.net',
needle: {} // options passed into needle requests
}
done returns an array of the following objects:
{
artist: String,
direct: String, // a url of the mp3 track
duration: Number,
song: ReadableStream, // a lazy readable stream of the mp3 file
title: String
}
Note that the direct link will not work unless you set the referer header. In
order to stream MP3s from MP3 Monkey, you must set the 'Referer' header to the
host of the website. Using the song stream handles this automatically.
MIT
FAQs
Search, stream and download MP3s from MP3 Monkey.
We found that mp3monkey 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
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.