
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
itunes-info
Advanced tools
Simple util to fetch data from iTunes with a Promise.
$ npm install -g itunes-info
$ itunes-info "Martin Garrix - Animals"
# Info will be printed...
$ npm install --save itunes-info
# or
$ yarn add itunes-info
// Import iTunes instance
import { iTunes } from 'itunes-info';
// Fetch any data you need from iTunes!
iTunes.fetch('Avicii - Hey Brother')
.then((data) => {
console.log(JSON.stringify(data, null, 4));
}).catch((error) => { console.error(error); });
// For example, use it to detect which kind of media
// you are working with by passing the filename as a query.
// For example, when working with friends.mp4
iTunes.fetch('friends')
.then((data) => {
// Will print: 'tv-episode'.
console.log(data.results[0].kind);
}).catch((error) => { consoler.error(error); })
// You can also provide optional two-letter country code.
iTunes.fetch('kraantje pappie', 'BE');
// Just print the data instance to see all the data you get.
Distributed under MIT - Jensen Bernard
FAQs
iTunes info downloader
We found that itunes-info 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
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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.