An open API service indexing awesome lists of open source software.

https://github.com/ptrcnull/itunes-listening-node

iTunes "Listening now" API for Node.js
https://github.com/ptrcnull/itunes-listening-node

Last synced: about 1 month ago
JSON representation

iTunes "Listening now" API for Node.js

Awesome Lists containing this project

README

          

# itunes-listening-node
iTunes "Listening now" API for Node.js

Made possible by [applescript](https://github.com/TooTallNate/node-applescript)

Example:
```javascript
const getListening = require('./')
const song = await getListening()

console.dir(song.artist)
console.dir(song.name)
console.dir(song.album)
```