npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

dcent-beats

v3.0.0-alpha.2

Published

Decentralised music based on Hypercore

Readme

Dcent Beats

Decentralised music using the Hypercore protocol.

Built on top of hyperdrive.

Install

npm i dcent-beats

API

const dBeats = new DcentBeats(drive, location)

Create a new Dcent Beats instance.

drive is a Hyperdrive instance, and location the folder where the music lives.

const key = dBeats.key

Returns the key corresponding to the underlying hyperdrive.

const blobsKey = dBeats.blobsKey

Returns the key corresponding to the underlying hyperdrive's blobs hypercore.

const dBeats = await dBeats.put(blob)

Upload a song. blob should contain the raw bytes of an mp3 file.

const dBeats = await dBeats.exists()

Returns true if a song exists at the location of this dcent beats instance, false otherwise.

const blob = await dBeats.get()

Get the audio as a blob of bytes.

const stream = dBeats.createReadStream()

Returns the audio stream of the song.

const metadata = await dBeats.getMetadata()

Get the metadata corresponding to this Dcent Beats song.

The metadata is an object:

{
  year, // Year of publishing
  title, // Song title
  artist, // Song artist
  durationSec, // Song duration in seconds
  version // internal version info ({ major, minor })
}

const cover = await dBeats.getCover()

Return the song's cover image (null otherwise).

cover is an object:

{
  data, // The raw data of the image (bytes)
  format, // The image format, as used in an html <img> tag (e.g. 'image/jpeg')
  major, // int: the major version of this cover structure
  minor / int: the minor version of this cover structure
}

await dBeats.close()

Close the dcent beats instance, cleaning up its hyperdrive session.

await dBeats.ready()

Open the dcent beats instance, ensuring its hyperdrive session is opened.