@audius/audius.js
TypeScript icon, indicating that this package has built-in type declarations

0.0.4 • Public • Published

audius.js

Audius.js offers a dead simple Javascript client for interacting with the Audius protocol.

This package is early and experimental. You may experience bugs and frequent changes.

Audius.js currently only works in Node environments. It will not work in a browser.

Under the hood, audius.js leverages Audius Libs, a much lower level client, to interact with the network.

Functionality

Audius.js currently supports streaming tracks and retrieving track metadata.

Audius.js is fully documented.

To stream a track, Audius.js provides an HLS manifest encoded in a data-URL. This URL should be consumable by clients that can stream HLS.

Installation

npm install @audius/audius.js

Usage

const Audius = require('@audius/audius.js')

// Create a new instance of the Audius client
const audius = new Audius({
  /* Give this client a descriptive ID describing this application. */
  analyticsId: 'audius_discord_bot'
})

// Return metadata for some track
const trackId = '12345'
try {
  const metadata = await audius.getTrackMetadata(trackId)
  console.log(metadata.title)
} catch (err) {
  ...
}

// Return a streamable URL for some track,
// do something fun with it.
try {
  const url = await audius.getAudioStreamURL(trackId)

  // Pass it off to a Discord client - fun!
  discordVoiceConnection.play(url)
} catch (err) {
  ...
}

Notes

TrackIds

Many of the methods accept trackIds. TrackIds may be found by stripping off the trailing digits from an Audius track URL: e.g. "https://audius.co/lido/life-of-peder-part-one-11786" => 11786

Developing

Linting

Audius.js uses ESLint to lint as pre-commit hook. ESLint is configured with both StandardJS and Prettier settings.

It's highly recommended to turn on auto-fixes on save in your editor of choice. In VSCode, you can install the ESLint Extension, and then add the following code to your settings.json:

    "editor.codeActionsOnSave": {
        "source.fixAll": true
    },

Commands

// Compile the lib in watch mode
npm run start
// Compile the lib once.
npm run build
// Compile docs for the lib.
npm run docs

Readme

Keywords

none

Package Sidebar

Install

npm i @audius/audius.js

Weekly Downloads

1

Version

0.0.4

License

Apache-2.0

Unpacked Size

1.48 MB

Total Files

17

Last publish

Collaborators

  • schottra
  • piazzatron
  • amendelsohn
  • dharit.tan
  • marcus_audius
  • sliptype
  • nicoback
  • theo-audius
  • sddioulde
  • dylanjeffers
  • kjshanks
  • audius-project