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

@brege/tabslx

v1.4.0

Published

Extract guitar tabs from Tabs-Lite backup files

Readme

tabslx - a Tabs-Lite extractor

Extract guitar tabs from a TabsLite Android app backup file using the Ultimate Guitar API.

[!IMPORTANT] UG's API throttles requests by IP address in a sophisticated release rotation. You get a couple shots a day to perform a full extraction. Sometimes, you may need to just wait awhile (days or a week) before you can sync again.

Setup

In Tabs Lite on your android phone, go to

  • Settings (Guitar in search field) > Export favorites and playlists.

This will save tabslite_backup.json on your phone. Copy this to your computer.

  1. Install dependencies

    git clone https://github.com/brege/tabslx
    npm install -g
  2. Configure the extractor

    cp config.default.yaml config.yaml

    Then edit config.yaml

    json: "tabslite_backup.json"
    data: "tabslite-export"
    cache: true
    filename:
      lowercase: false
      space: "-"
      id: true
      format: "{artist}---{song}-{id}.txt"
    • json is the exported TabsLite backup.
    • data is the output directory (device id cache lives here).
    • filename.space replaces whitespace with the given string.
    • filename.id toggles whether {id} stays in the template.

Usage

| Command | Description | Notes | | --- | --- | --- | | Basic extraction | tabslx | | | Force re-download | tabslx --force | overwrite files on disk | | Rotate device identity | tabslx --refresh | regenerates <data>/.device_id | | Use custom config | tabslx --config config.yaml | hierarchy: config.yaml > --config > config.default.yaml |

Filename pattern

  • With filename.id: true
    # "{artist} - {song} [{id}].txt"
    'The Weakerthans - Virtute The Cat Explains Her Departure [1068619].txt'
  • With filename.id: false
    # "{artist} - {song}.txt"
    'The Weakerthans - Virtute The Cat Explains Her Departure.txt'
  • Lowercase plus dash spacing:
    # "{artist}---{song}-{id}.txt"
    the-weakerthans---virtute-the-cat-explains-her-departure-1068619.txt

Acknowledgements

TabsLite

License

GPLv3