grooveshark

0.0.3 • Public • Published

build status

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);
  });
})

/grooveshark/

    Package Sidebar

    Install

    npm i grooveshark

    Weekly Downloads

    7

    Version

    0.0.3

    License

    MIT

    Last publish

    Collaborators

    • theycallmeswift