Code Monkey home page Code Monkey logo

node-itunes's Introduction

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

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 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-itunes's People

Contributors

tootallnate avatar notcoffeetable avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.