
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.
iheartradio
Advanced tools
Get information from IHeartRadio's Website about stations and possibly more in the future.
This is a FAN module of IHeartRadio's API. Parameters may change as more get discovered or found.
const ihr = require("iheartradio");
ihr.search("My 99.5", {"maxRows": 3}).then(results => {
console.log(results);
}).catch(console.error);
const ihr = require("iheartradio");
ihr.getStreamInfo(2385).then(stream => {
console.log(stream);
}).catch(console.error);
const ihr = require("iheartradio");
ihr.getStreamInfo(46356280).then(album => {
console.log(album);
}).catch(console.error);
All options are included in one object found in the example at the bottom.
secure#boolean - Changes from https to http.maxRows#number - Changes the amount of results you'll get.bundle#boolean - Change to false to allow individual output using the options below.
station#boolean - Allow stations in output.artist#boolean - Allow artists in output.album#boolean - Allow albums in output.track#boolean - Allow tracks in output.playlist#boolean - Allow playlists in output.podcast#boolean - Allow podcasts in output.countryCode#string - The country in which to use the URL. If you used US for example, it'd use us.api.iheart.com and add &countryCode=US to the request URL.startIndex#number - Possibly used for pagination.const ihr = require("iheartradio");
ihr.search("99", {
"secure": false,
"maxRows": 25,
"bundle": false,
"station": true,
"artist": false,
"album": false,
"track": false,
"playlist": false,
"podcast": false
}).then(results => {
console.log(results); // An output only including 25 found stations.
}).catch(console.error);
FAQs
Get information from IHeartRadio's Website about stations and possibly more in the future.
We found that iheartradio 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.