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

rmcache

v1.2.1

Published

💨 Remove frontend junk files.

Downloads

455

Readme

English | 中文

Introduction

rmcache is a CLI tool that helps you quickly clean up frontend project junk files and cache directories. It's perfect for freeing up disk space or preparing your project for sharing.

Installation

npx rmcache

Command Options

| Option | Description | Example | |--------|-------------|---------| | [framework] | Specify framework to clean only framework-related cache files. Currently supports nuxt | rmcache nuxt | | -c, --cwd <path> | Specify working directory to clean junk files in | rmcache -c /path/to/project | | --lock | Include lock files in cleanup (not included by default) | rmcache --lock | | --help | Display help information | rmcache --help | | --version | Display version number | rmcache --version |

Usage Examples

Clean Current Project

Run the command in your project directory to clean all junk files:

npx rmcache

Clean Lock Files

By default, lock files are NOT cleaned. Use the --lock flag to include them:

npx rmcache --lock

Clean Specific Framework

Clean cache files for a specific framework. Currently supports nuxt:

npx rmcache nuxt

When using framework mode, rmcache will only clean:

  • node_modules - dependencies
  • .nuxt - Nuxt cache directory
  • .output - Nuxt build output

This mode is useful for monorepos where you only want to clean Nuxt-related files.

What Gets Cleaned?

Directories

rmcache removes the following directories:

  • node_modules - npm/pnpm dependencies
  • dist - build output
  • .nuxt - Nuxt.js cache
  • .next - Next.js cache
  • .output - Nitro build output
  • jspm_packages - JSPM dependencies
  • web_modules - Snowpack dependencies
  • .cache - generic cache
  • .parcel-cache - Parcel bundler cache
  • .vuepress/dist - VuePress build output
  • .temp - temporary files
  • .svelte-kit - SvelteKit
  • .docusaurus - Docusaurus
  • .serverless - Serverless Framework
  • .fusebox - FuseBox bundler
  • .dynamodb - DynamoDB Local
  • .firebase - Firebase
  • .tern-port - Tern
  • .turbo - Turbo cache

Lock Files

rmcache also removes package manager lock files:

  • package-lock.json - npm
  • pnpm-lock.yaml - pnpm
  • yarn.lock - yarn
  • bun.lockb - bun
  • deno.lock - deno
  • vlt.json - vlt

License

MIT License © lonewolfyx