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

itunes-helper

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

itunes-helper - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

lib/itunes-helper.min.js

2

index.js

@@ -1,1 +0,1 @@

module.exports = require('./lib/itunes-api.min');
module.exports = require('./lib/itunes-helper.min');
{
"name": "itunes-helper",
"version": "1.0.0",
"version": "1.0.1",
"main": "index.js",

@@ -9,5 +9,9 @@ "description": "Library to simplify using the iTunes API.",

"typings": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/jens-hansen/itunes-api"
},
"scripts": {
"start": "yarn build",
"build": "webpack --watch",
"build": "webpack",
"test": "jest",

@@ -14,0 +18,0 @@ "test:watch": "jest --watchAll"

@@ -1,5 +0,21 @@

# iTunes-Api
# iTunes-Helper
Simplifies usage of the iTunes Api.
## Installation
Node:
```bash
npm install itunes-helper
```
```javascript
const iTunesHelper = require('itunes-helper');
```
In Webbrowser:
```html
<script src="https://unpkg.com/itunes-helper/lib/itunes-helper.min.js"></script>
```
## Usage

@@ -9,7 +25,8 @@

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

@@ -19,3 +36,3 @@

```javascript
iTunesApi.lookup({
iTunesHelper.lookup({
id: 1256129534,

@@ -22,0 +39,0 @@ country: 'DE',

Sorry, the diff of this file is not supported yet

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