Socket
Socket
Sign inDemoInstall

itunes-helper

Package Overview
Dependencies
4
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    itunes-helper

Library to simplify using the iTunes API.


Version published
Weekly downloads
1
Maintainers
1
Install size
666 kB
Created
Weekly downloads
 

Readme

Source

iTunes-Helper

Build Status

Simplifies usage of the iTunes Api.

Installation

Node:

npm install itunes-helper
const iTunesHelper = require('itunes-helper')

In Webbrowser:

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/itunes-helper/lib/itunes-helper.min.js"></script>

Usage

Search API:

iTunesHelper
    .search({
        term: 'game of thrones',
        country: 'DE',
        limit: 1,
    })
    .then(res => console.log(res))

Lookup API:

iTunesHelper
    .lookup({
        id: 1256129534,
        country: 'DE',
    })
    .then(res => console.log(res))

FAQs

Last updated on 24 Oct 2019

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc