0.0.3 • Published 11 years ago

grooveshark v0.0.3

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

Grooveshark

This is a package for interacting with the Grooveshark V3 API using node.js.

Installation

npm install grooveshark

Usage

var gs = require('grooveshark')
  , client = new gs('your_api_key', 'your_api_secret');

client.authenticate('your_grooveshark_username', 'you_grooveshark_password', function(err) {
  client.request('someMethod', {param1: 'foobar', param2: 1234}, function(err, status, body) {
    if(err) {
      throw err
    }

    console.log(body);
  });
})
0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

12 years ago