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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ultimate-guitar

v4.0.1

Published

A scrape version of tabs.ultimate-guitar.com

Readme

Ultimate Guitar Scraper

A Node.js package for scraping guitar tabs, chords, and other musical content from Ultimate Guitar.

Features

  • 🚀 Fast & Reliable: Efficiently searches and fetches content from Ultimate Guitar.
  • 🛡️ Bot Protection Bypass: Uses got-scraping to seamlessly bypass Cloudflare and other bot detection mechanisms.
  • 📦 ES Modules: Modern ESM-first design.
  • 📘 TypeScript Support: Fully typed for a better developer experience.
  • 🎸 Versatile: Supports chords, tabs, bass, ukulele, and more.

Installation

npm install ultimate-guitar

Quick Start (ES Modules)

import { guitar } from 'ultimate-guitar';

// Setting up
const ug = guitar()

// Search for a song
const result = await search('Hello', 'Adele');
console.log(result);

Alternative Wrapper Usage

import { guitar } from 'ultimate-guitar';

const ug = guitar();
const result = await ug.search('Hello', 'Adele');

API Reference

search(title, artist?, category?)

Search for songs on Ultimate Guitar.

Parameters:

  • title (string, required): The song title to search for.
  • artist (string | number, optional): The artist name or a category ID. If a number is provided that matches a category, it will be treated as the category.
  • category (number, optional): Filter by content type using the category export.

Available Categories:

  • category.VIDEO (100)
  • category.TAB (200)
  • category.CHORDS (300)
  • category.BASS (400)
  • category.POWER (600)
  • category.DRUMS (700)
  • category.UKULELE (800)

Usage Examples

Basic search:

const { guitar } = require("ultimate-guitar")
const ug = guitar()
const result = await search('Hello');

Search with artist:

const { guitar } = require("ultimate-guitar")
const ug = guitar()
const result = await search('Hello', 'Adele');

Search with category filter:

import { guitar } from 'ultimate-guitar';
const ug = guitar()

const result = await ug.search('Hello', 'Adele', ug.category.CHORDS);

fetch(url_or_response)

Fetch the actual chord/tab content from a search result.

Parameters:

  • url_or_response (string | GuitarTabs): Either a URL string or a response object from searchSong.

Usage Examples

const { guitar } = require("ultimate-guitar")

const ug = guitar()
const searchResult = await ug.search('Hello', 'Adele');
if (searchResult.status === 200) {
  const chords = await ug.fetch(searchResult.responses[0]);
  console.log(chords.response);
}

guitar()

A convenience wrapper that returns an object containing all the library's functions.

import { guitar } from 'ultimate-guitar';

const { search, fetch, category } = guitar();

Response Format

Search Response

{
  status: number;
  responses: GuitarTabs[] | string;
}

GuitarTabs Interface

interface GuitarTabs {
  id: number;
  song_id: number;
  song_name: string;
  artist_name: string;
  type: string;
  version: number;
  votes: number;
  rating: number;
  tab_url: string;
  artist_url: string;
  // ... and many more metadata fields including album/artist covers
}

Changelog

Version 4.0.0 (May 23, 2026)

  • Initial release of the refactored project.
  • Modernized build system and dependencies.
  • Added guitar() wrapper function.

Version 3.0.0

  • Breaking Change: Switched project to ES Modules (ESM). Node.js 16+ is now required.
  • Bot Challenge Fix: Replaced axios with got-scraping to bypass Cloudflare bot protection.

License

ISC

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.