Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tootallnate/node-itunes
A native node interface to interact with an iTunes process.
https://github.com/tootallnate/node-itunes
Last synced: 22 days ago
JSON representation
A native node interface to interact with an iTunes process.
- Host: GitHub
- URL: https://github.com/tootallnate/node-itunes
- Owner: TooTallNate
- License: mit
- Created: 2011-05-07T03:48:50.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2011-07-08T06:10:05.000Z (over 13 years ago)
- Last Synced: 2024-12-10T14:05:03.091Z (about 1 month ago)
- Language: C++
- Homepage:
- Size: 177 KB
- Stars: 30
- Watchers: 4
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
node-iTunes
===========
### A native [node][] interface to interact with an [iTunes][] process.This module exposes iTunes' [ScriptingBridge][] interface to node. This allows
for controlling almost _every_ aspect of your library programmatically with
node!You can even connect to a _remote_ iTunes instance that's somewhere on your
LAN, it doesn't have to be your local iTunes.This currently requires node running on OS X to compile.
Example
-------``` javascript
var iTunes = require('iTunes');iTunes.createConnection({
username: 'uname',
password: 'mysekretz',
host: '192.168.0.14'
}, function (err, conn) {
if (err) throw err;// Set the volume of iTunes to 50%,
// fire-and-forget style!
conn.volume(50);conn.selection(function (err, selection) {
// Get an Array of `Track`s containing the current selection
});
});
```API
---Look at the [iTunes Header File][API] to see the [API][] that it exposes.
`node-iTunes` aims to wrap as much of that functionality as is practical (there's
a lot of it though!).If you come across a property or function that is missing from `node-iTunes`
that you would like to use, then please open an Issue requesting it and it will
be a priority.[node]: http://nodejs.org
[API]: https://github.com/TooTallNate/node-iTunes/blob/master/src/iTunes.h
[iTunes]: http://www.apple.com/itunes
[ScriptingBridge]: http://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ScriptingBridgeConcepts/Introduction/Introduction.html