Code Monkey home page Code Monkey logo

github-now-playing's Introduction

github-now-playing

Current Release CI Build Coverage Status Licence

๐Ÿ“– Table of Contents

Motivation

GitHub introduced a new feature that allows you to set a status on your profile, so I thought it would be a cool idea if I could share the music I'm listening to โ€” kind of like #NowPlaying โ€” right on my GitHub profile!

Screen Shot 2019-04-09 at 7 28 36 PM

Installation

This library is available on the npm registry as a node module and can be installed by running:

# via npm
npm install --save github-now-playing

# via yarn
yarn add github-now-playing

You also need to generate a personal access token with the user scope to allow this library to communicate with GitHub.

Example

import { GitHubNowPlaying } from 'github-now-playing';

const nowPlaying = new GitHubNowPlaying({
 token: process.env.GITHUB_ACCESS_TOKEN,
});

// Create a new source to retrieve the track that is currently playing
const spotifySource = new GitHubNowPlaying.Sources.Spotify({
 // wait time in milliseconds between checks for any track changes
 updateFrequency: 1000,
});

// Make sure a source is set before calling listen()
nowPlaying.setSource(spotifySource);

// Don't forget to handle the error event!
nowPlaying.on(GitHubNowPlaying.Events.Error, error => {
  console.log('something went wrong');
});

// Listen to any track changes and update the profile status accordingly.
nowPlaying.listen();

// Don't forget to stop reporting any track changes when the process exists.
process.on('SIGINT', () => {
  // Calling the stop() method will clear the profile status.
  nowPlaying.stop()
});

API

github-now-playing exposes a named export class GitHubNowPlaying that is also a namespace for various source providers and event names.

Class: GitHubNowPlaying

new GitHubNowPlaying(options: GitHubNowPlayingConstructorOptions)

Creates a new instance of GitHubNowPlaying.

Constructor Options

An object with the following keys:

Methods

nowPlaying.setSource(source)

Assigns a source provider object from which the currently-playing track will be retrieved.

This method must be called before calling listen().

nowPlaying.on(event, listener)

Adds the listener function as an event handler for the named event. The event parameter can be one of the values available under the GitHubNowPlaying.Events namespace.

Returns a reference to the GitHubNowPlaying instance, so that calls can be chained.

nowPlaying.off(event, listener)

Removes the specified listener function for the named event.

The event parameter can be one of the values available under the GitHubNowPlaying.Events namespace.

Returns a reference to the GitHubNowPlaying instance, so that calls can be chained.

nowPlaying.listen()

Starts listening to any track changes coming from the specified source and updates the GitHub profile status accordingly.

The event GitHubNowPlaying.Events.ListenStart is emitted upon calling this method.

Additionally, every time the profile status is updated, the event GitHubNowPlaying.Events.StatusUpdated is emitted with the profile status object.

Note that upon calling listen(), the profile status will be updated immediately to reflect the currently playing track.

nowPlaying.stop()

Stops listening to any track changes.

Calling this method will result in clearing the profile status if it has been already updated with a currently playing track.

If the status is cleared, the event GitHubNowPlaying.Events.StatusCleared is emitted, then followed by the event GitHubNowPlaying.Events.ListenStop.

This method is asynchronous and will resolve after clearing the profile status.


Sources Providers: GitHubNowPlaying.Sources

GitHubNowPlaying relies on a source provider object that retrieves the currently playing track from a specific source.

These sources can be either local desktop applications, such iTunes or Spotify, or even via web APIs, such as Last.fm.

GitHubNowPlaying comes with built-in support for all of these sources. Note that support for desktop applications is currently limited to macOS.

The following sources are available under the namespace GitHubNowPlaying.Sources:

LastFM

Fetches information about the currently-playing track via Last.fm.

const lastFmSource = new GitHubNowPlaying.Sources.LastFM({
 apiKey: process.env.LAST_FM_API_KEY, // Your Last.fm API key
 updateFrequency: 1000,
});

nowPlaying.setSource(lastFmSource);

ITunes

Fetches information about the currently-playing track in iTunes.

const iTunesSource = new GitHubNowPlaying.Sources.ITunes({
 updateFrequency: 1000,
});

nowPlaying.setSource(iTunesSource);

Platforms supported: macOS

Spotify

Fetches information about the currently-playing track in Spotify.

const spotifySource = new GitHubNowPlaying.Sources.Spotify({
 updateFrequency: 1000,
});

nowPlaying.setSource(spotifySource);

Platforms supported: macOS


Events: GitHubNowPlaying.Events

Instances of GitHubNowPlaying emit various events during the program life-cycle. You can add or remove event listeners via on() and off() respectively.

Error

Emitted when an error occurs:

nowPlaying.on(GitHubNowPlaying.Events.Error, (error) => { /* ... */ });

ListenStart

Emitted when GitHubNowPlaying starts listening to track changes via the specified source:

nowPlaying.on(GitHubNowPlaying.Events.ListenStart, () => { /* ... */ });

ListenStop

Emitted when GitHubNowPlaying has stopped listening to track changes via the specified source:

nowPlaying.on(GitHubNowPlaying.Events.ListenStop, () => { /* ... */ });

StatusUpdated

Emitted when GitHubNowPlaying has updated the profile status with currently-playing track successfully. Listeners of this event are called with the user-status object.

nowPlaying.on(GitHubNowPlaying.Events.ListenStop, (status) => { /* ... */ });

StatusCleared

Emitted when GitHubNowPlaying has cleared the profile status after it has been updated with a currently playing track. This happens when the source provider reports that there are no tracks are currently playing, or when stop() is called.

nowPlaying.on(GitHubNowPlaying.Events.StatusCleared, () => { /* ... */ });

See Also

License

MIT

github-now-playing's People

Contributors

dependabot[bot] avatar wsmd avatar

Stargazers

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