Giter Club home page Giter Club logo

lautfm's Introduction

lautfm

Nodejs module for Webservice laut.fm API

Details about the API

Install

npm install lautfm

Usage

const Lautfm = require('lautfm')

const laut = new Lautfm();

laut.searchStations({query: 'ska', limit: 2})
    .then(data => console.log(data))
    .catch(err => console.error(err))

Methods

  • getGenres() All available genres.
  • getStation(<name>[, section]) Get Station details.
  • getStations([filter]) Get a list of stations
  • getServerTime() The server time
  • getServerStatus() The current server status and a message.
  • getGenres([list]) All available genres
  • getLetters() All available starting-letters of the stations.
  • getStationNames() The names of all stations.
  • getListeners() The listeners of all stations.
  • searchStations(<params>[, list]) Search stations http://api.laut.fm/documentation/search

Properties

  • station_sections List of available sections for getStation()
  • stations_by List of available types for getStations({by: {type}...})

section

Values used as section parameters in getStation(<name>[, section]).

section Description
current_song The currently playing song of a single station.
last_songs The 10 last songs of a single station.
listeners The listener count of a single station.
next_artists Next artists of a single station. Information may be inacurate or plainly wrong right before a playlist or schedule change.
playlists The schedule of a single station grouped by playlists.
schedule The schedule of a single station.

Station by types

Values used as 'by' in filter object used in getStations()

type Description
genre All stations of a certain genre.
letter All stations beginning with the certain letter.
live A list of all stations sending live at the moment.
numbers All stations beginning with a number.

Example

Get all stations starting with letter e

let filter = {
  by: 'letter', // filter by letter
  term: 'e'     // stationname starting with 'e'
}
laut.getStations(filter)
  .then(data => console.log(data))
  .catch(err => console.error(err))

Result will be a Object like this

lautfm's People

Contributors

nepodev avatar

Stargazers

AMC avatar Clemens Knost avatar

Watchers

James Cloos avatar

Forkers

leandroaragao31

lautfm's Issues

Get last song

Hello,
do you have an example for me on how to get the last song?

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.