New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

itunes-web-api

Package Overview
Dependencies
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itunes-web-api - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

2

package.json
{
"name": "itunes-web-api",
"version": "1.0.5",
"version": "1.0.6",
"description": "iTunes WEB API Scrapper. Get iTunes track/trackvideo/artist/album/movie/app/book/voicebook/podcast infos with their names.",

@@ -5,0 +5,0 @@ "main": "index.js",

## WELCOME TO ITUNES WEB API!
## WARNING!! (IF U ARE USING VER 1.0.4 or LOWER PLEASE UPDATE YOUR MODULE)
## WARNING!! (IF U ARE USING VER 1.0.5 or LOWER PLEASE UPDATE YOUR MODULE)
### NOTE: OPTIONS ARE OPTIONAL - NOT NECESSARY

@@ -12,3 +12,3 @@

//##### USAGE FOR TRACK INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.track(songName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -19,3 +19,3 @@ console.log(data)//track infos in resulst array

//##### USAGE FOR TRACK-VIDEO INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.trackVideo(songName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -26,3 +26,3 @@ console.log(data) //album infos in resulst array

//##### USAGE FOR ARTIST INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.artist(artistName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -33,3 +33,3 @@ console.log(data) //album infos in resulst array

//##### USAGE FOR ALBUM INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.album(albumName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -40,3 +40,3 @@ console.log(data) //album infos in resulst array

//##### USAGE FOR APP INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.app(songName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -47,3 +47,3 @@ console.log(data)//app infos in resulst array

//##### USAGE FOR MOVIE INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.movie(movieName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -54,3 +54,3 @@ console.log(data)//movie infos in resulst array

//##### USAGE FOR BOOK INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.book(bookName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -61,3 +61,3 @@ console.log(data)//book infos in resulst array

//##### USAGE FOR VOICE-BOOK INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.voicebook(voicebookName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -68,3 +68,3 @@ console.log(data)//voice-book infos in resulst array

//##### USAGE FOR PODCAST INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.voicebook(voicebookName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -75,3 +75,3 @@ console.log(data)//podcast infos in resulst array

//##### USAGE FOR ALL INFO #####\\
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.searchAll(searchString, entity, attribute, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -85,3 +85,3 @@ //entity examples === movie, album, allArtist, podcast, musicVideo, mix, audiobook, tvSeason, allTrack

```js
const itunes = require('itunes-api');
const itunes = require('itunes-web-api');
let data = await itunes.track(songName, {limit: Number, lang: 'lang-code', country: 'country-code'})

@@ -88,0 +88,0 @@ console.log(data)

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc