Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

Last synced: 25 days 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)
```