Giter Club home page Giter Club logo

quicklastfmnowplaying's Introduction

LastFMNowPlaying

A dumb/quick module to get current playing track

Notes:

Dumb loop fetch of user.getRecentTracks you will need a API key from Last.fm

Uses node-fetch to make the request.

Example usage:

var lfmnp = require('QuickLastFMNowPlaying');

var c = new lfmnp.QuickLastFMNowPlaying({
    api_key: some_apikey,
    user: some_lastFM_username
});

c.on('error', function(e) {
    console.error(e);
}).on('warning', function(e) {
    console.error('Got a', e.code, e.body);
}).on('song', function(s) {
    console.log('song', s.name, 'by', s.artist['#text']);
}).on('always', function(s) {
    console.log('always', s);
})

Options

  • api_key - string, required, you need a API Key in order to poll Last.fm
  • user - string, required, the username to fetch songs for,
  • poll_time - int, optional, default 10000 - time between polls in MS
  • nowplaying_only - boolean, optional, default false, if true only return a song event if the current song is actually playing
  • user_agent - override the default useragent, helps ID your calls to LastFM in the event of a problem

Events

  • error - percolates an error if request gets one, or an error with the response, passed the error
  • always - emits the whole response of user.getrecenttracks
  • song - the song changed, returns the first track object
  • nochange - the poll completed, but the song didn't change, nothing is passed
  • warning - non 200 call from the API, either Last.fm tripped, or you are polling to quick and hit a rate limit. passes an object containting the HTTP Code as code and the body response

Change Log

v1.1.0

Swapped from Got to Node Fetch And a Rename to QuickLastFMNowPlaying

quicklastfmnowplaying's People

Contributors

barrycarlyon avatar

Stargazers

 avatar  avatar

Watchers

 avatar  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.