Ecosyste.ms: Awesome
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: 25 days ago
JSON representation
iTunes "Listening now" API for Node.js
- Host: GitHub
- URL: https://github.com/ptrcnull/itunes-listening-node
- Owner: ptrcnull
- License: mit
- Created: 2018-10-08T18:28:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-08T18:52:29.000Z (about 6 years ago)
- Last Synced: 2024-10-08T01:17:36.014Z (about 1 month ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# itunes-listening-node
iTunes "Listening now" API for Node.jsMade 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)
```