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 🙏

© 2024 – Pkg Stats / Ryan Hefner

libmuse

v0.1.1

Published

A library to interact with the YouTube Music (InnerTube) api.

Downloads

235

Readme

muse

A library to interact with the YouTube Music (InnerTube) api.

Note: This library is still in development, and is not ready for production use.

Usage

muse works on Deno, Node.js, the browser and any javascript environment that supports ES modules and fetch.

You can read the docs for more information about the usage of each function.

Don't forget to replace VERSION with the latest version

Deno

import * as muse from "https://deno.land/x/muse@VERSION/mod.ts";

// you can also use the latest version (not recommended) with
// import * as muse from "https://deno.land/x/muse/mod.ts";

// you can also import directly from github
// import * as muse from "https://raw.githubusercontent.com/vixalien/muse/VERSION/mod.ts";

const search_results = await muse.search("drake");
const rickroll = await muse.get_song("dQw4w9WgXcQ");

Browser

You'll need to use a CDN that supports ES modules, such as esm.sh, jspm.io or skypack.dev.

Proxy

You'll also need to use a proxy server to get around CORS errors. It's a good idea to self host the proxy server (cors-anywhere and deno_deploy_cors_proxy are good options).

import * as muse from "https://esm.sh/libmuse@VERSION";

// import * as muse from "https://jspm.dev/npm:libmuse@VERSION";
// import * as muse from "https://cdn.skypack.dev/libmuse@VERSION";

// setting up our proxy
muse.set_option("fetch", (url, options) => {
  return fetch(`https://proxy.example.com/${url}`, options);
});

const search_results = await muse.search("top radio");

Node

First install using your preferred package manager (npm, yarn, pnpm etc.)

npm install libmuse

Then use it in by importing libmuse. The Node version has the exact same features as the Deno version.

import * as muse from "libmuse";
// commonjs: const muse = require("libmuse");

const artist = await muse.get_artist("UCvyjk7zKlaFyNIPZ-Pyvkng");

For the complete list of operations, see the docs.

Auth

Currently, muse supports oauth authentication by posing as the YouTube TV app.

Here's the flow:

  1. Get a login code
  2. Go to the given login url, and type in the login code on a device that is logged into a google account
  3. Get the OAuth token & refresh tokens
import * as muse from "https://deno.land/x/muse@VERSION/mod.ts";

const auth = muse.get_option("auth");

muse.setup({
  // make sure to persist the token
  store: new DenoFileStore("store/muse-store.json"),
  debug: true,
});

// this is the authentication flow
const auth_flow = async () => {
  if (auth.has_token()) return;
  console.log("Getting login code...");

  const loginCode = await auth.get_login_code();

  console.log(
    `Go to ${loginCode.verification_url} and enter the code: ${loginCode.user_code}`,
  );

  // not necessary, but saves some requests
  alert("Press enter when you have logged in");

  console.log("Loading token...");

  await auth.load_token_with_code(
    loginCode.device_code,
    loginCode.interval,
  );

  console.log("Logged in!", auth._token);
};

// listen to the `requires-login` event, then resolve pass on a function that
// returns a promise that will resolve when the auth flow is complete
auth.addEventListener("requires-login", (event) => {
  const resolve = event.detail;

  resolve(auth_flow);
});

In the future, I plan to add support for other auth methods, such as cookies and Youtube TV login codes.

Storage

You can pass in a storage object to the client to persist the auth token.

import * as muse from "https://deno.land/x/muse@VERSION/mod.ts";

// you can use the "best" store, which is DenoFileStore if available, then LocalStorageStore, then MemoryStore
const client = muse.setup({ store: muse.get_best_store() });

// or you can use any of the built-in stores
const client = muse.setup({ store: new muse.DenoFileStore("/path/to/file.json") });
const client = muse.setup({ store: new muse.LocalStorageStore() });
const client = muse.setup({ store: new muse.MemoryStore() });

// or you can implement your own store
// by extending the Store abstract class
class MyStore extends muse.Store {
  get<T>(key: string): T | null;
  set(key: string, value: unknown): void;
  delete(key: string): void;
}

// then use it accordingly
const client = muse.setup({ store: new MyStore() });

// Do note that setup() can be called multiple times, but it's not recommended. 
// this is because setup overrides the global store, so if you call setup()
// multiple times, other options set before will be ignored. example:

muse.setup({ auth: { /* custom auth options */ } });
muse.setup({ store: /* custom store */ });

// the above will only use the custom store, and ignore the custom auth options

// if you need to configure options many times use `muse.set_option`
muse.set_option("store", /* custom store */)

Operations

I'm currently targetting to match the ytmusicapi's capabilities.

search

  • [x] search
  • [x] search suggestions

browsing

  • [x] home
  • [x] get artist
  • [x] get artist albums
  • [x] get album
  • [x] get album browse id
  • [x] get user
  • [x] get user playlists
  • [x] get song
  • [x] get song related
  • [x] get lyrics
  • [ ] get tasteprofile
  • [ ] set tasteprofile

explore

  • [x] get explore
  • [x] get mood categories
  • [x] get mood playlists
  • [x] get charts
  • [x] get new releases

watch

  • [x] get queue ~~get watch playlist~~

library

  • [x] get library
  • [x] get library playlists
  • [x] get library songs
  • [x] get library albums
  • [x] get library artists
  • [x] get library subscriptions
  • [x] get liked songs
  • [x] get history
  • [x] add history item
  • [x] remove history items
  • [x] rate song
  • [x] edit song library status
  • [x] rate playlist
  • [x] subscribe artists
  • [x] unsubscribe artists

playlists

  • [x] get playlist
  • [x] create playlist
  • [x] edit playlist
  • [x] delete playlist
  • [x] add playlist items
  • [x] remove playlist items

uploads

  • [x] get library uploads
  • [x] get library upload songs
  • [x] get library upload artists
  • [x] get library upload albums
  • [x] get library upload artist
  • [x] get library upload album
  • [x] upload song (doesn't currectly work because the TV client can't do uploads)
  • [x] delete upload entity

Acknowledgements