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

vuoto

v0.0.3

Published

Modern whitespace normalizer CLI with enhanced output and developer experience - cut the noise, clean the void

Readme

vuoto

cut the noise, clean the void—normalize your whitespace

Table of Contents

Features

  • 🎨 Enhanced CLI with Commander.js - Better command parsing and help system
  • 🌈 Colorful Output with Chalk - Beautiful, readable terminal output
  • 📊 Progress Tracking - Clear feedback on what's being processed
  • 🔍 Verbose Mode - Detailed logging for debugging
  • 🤫 Silent Mode - Quiet operation for CI/CD pipelines
  • Fast - Efficient file processing with fast-glob
  • 🎯 Smart Defaults - Sensible ignore patterns out of the box
  • 📝 Simple Configuration - Use .vuotoignore file for custom exclusions

Installation

pnpm install

Usage

CLI

# Check all files
vuoto

# Fix whitespace issues
vuoto --fix

# Check specific patterns
vuoto "src/**/*.ts" --fix

# Exclude specific patterns
vuoto --fix --exclude "**/*.min.js"

# Verbose output
vuoto --verbose --fix

# Silent mode (for CI)
vuoto --silent --fix

Programmatic API

import { normalize, runNormalize } from 'vuoto';

// Normalize a string
const clean = normalize('Hello\u00A0World'); // "Hello World"

// Process files
await runNormalize({
  patterns: ['src/**/*.ts'],
  fix: true,
  verbose: true,
});

Configuration

Create a .vuotoignore file in your project root to exclude files (similar to .gitignore):

# Build outputs
dist/** =
build/** =
.next/** =

# Dependencies
node_modules/** =

# Minified files
*.min.js =
*.min.css =

# Lock files
package-lock.json =
pnpm-lock.yaml =

You can also use the --exclude flag to exclude patterns on the fly:

vuoto --fix --exclude "**/*.test.ts" "**/*.spec.ts"

What it Normalizes

  • ✓ Zero-width characters (U+200B, U+200C, U+200D)
  • ✓ Byte order marks (U+FEFF)
  • ✓ Non-breaking spaces (U+00A0, U+202F)
  • ✓ Line/paragraph separators (U+2028, U+2029)
  • ✓ Em/en spaces (U+2003, U+2002)
  • ✓ Ideographic spaces (U+3000)
  • ✓ Form feeds and vertical tabs
  • ✓ Various Unicode space characters

Enhancements over Legacy Package

  1. Better CLI Experience - Commander.js provides better argument parsing and help
  2. Visual Feedback - Chalk colors make output clear and professional
  3. Improved Output - Summary statistics and progress indicators
  4. Simpler Configuration - Just use .vuotoignore file instead of JavaScript config
  5. Type Safety - Full TypeScript support with proper types
  6. Modern APIs - Uses latest Node.js and npm package features

Building

Run nx build vuoto to build the library.


License

This project is licensed under the MIT License.

Copyright (c) 2025 Davide Di Criscito

For the full details, see the LICENSE file.