New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@alexanderallen/itunes-music-library-tracks

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@alexanderallen/itunes-music-library-tracks

Creates a stream of tracks from an iTunes Library XML file

latest
Source
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

iTunes Music Library Tracks

This module loops through iTunes Music Library XML and spits out a stream of JSON objects for each track.

Motivation

There are similar npm modules that do this, however when trying to utilise them in an electon application they all failed in one way or another. I created my module using minimal dependencies so that it works without issue.

##Installation

$ npm install @johnpaulvaughan/itunes-music-library-tracks --save

##Code Example Supply the module with a path to your xml file. It returns a node readStream of tracks.
It throws an error if something goes wrong.

let getItunesTracks = require('itunes-music-library-tracks').getItunesTracks;
let validXMLpath = 'C:\Users\JohnPaulVaughan\Music\iTunes\iTunes Music Library.xml'

let trackStream = getItunesTracks(validXMLpath)

trackStream.on('data', function(track) {
    console.log(JSON.parse(track))
})

trackStream.on('error', function(err) {
    console.log(err)
})

trackStream.on('end', () => {
console.log('finished parsing xml stream')
})


Keywords

itunes

FAQs

Package last updated on 18 Oct 2018

Did you know?

Socket

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