
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.