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

zappp

v1.0.0

Published

A simple, fast static file server with live reload - VS Code Live Server clone

Downloads

94

Readme

Zappp ⚡

A simple, fast static file server with live reload functionality - a complete VS Code Live Server clone.

Features

  • 🚀 Zero configuration - just run zappp
  • 🔄 Live reload on file changes
  • 📁 Directory listing
  • 🌐 Network accessible
  • 🎨 Beautiful error pages
  • 📦 Lightweight and fast
  • 🔒 Security: prevents directory traversal attacks

Installation

Global Installation (Recommended)

npm install -g zappp

Local Installation

npm install zappp

Usage

Basic Usage

Navigate to your project folder and run:

zappp

This will start the server on http://localhost:3000

Command Line Options

# Start server in current directory (default port 3000)
zappp

# Start with specific port
zappp -p 8080

zappp --port 8080

# Start with specific host
zappp -h 127.0.0.1

zappp --host 127.0.0.1

# Open browser automatically
zappp -o

zappp --open

# Don't open browser (default behavior)
zappp --no-browser

# Serve a specific directory
zappp path/to/folder

zappp ./public

zappp ../my-website

# Show help
zappp --help

# Combine options
zappp -p 8080 -o

zappp -port 8080 -open

zappp ./dist -p 5000 -o Serve dist folder on port 5000 and open browser

zappp -h 0.0.0.0 -p 8000 -o

# Version check & update
zappp -v or zappp --version

npm update -g zappp

Options

| Option | Alias | Description | Default | |--------|-------|-------------|---------| | --port <number> | -p | Port to use | 3000 | | --host <host> | -h | Host to use | 0.0.0.0 | | --open | -o | Open browser automatically | false | | --no-browser | | Don't open browser | | | --help | | Show help message | |

How It Works

  1. Static File Serving: Serves all static files (HTML, CSS, JS, images, etc.) from the current directory
  2. Live Reload: Watches for file changes and automatically reloads the browser
  3. WebSocket Connection: Uses WebSocket to communicate between server and browser
  4. Directory Listing: Shows a beautiful directory listing when no index.html is found

License

MIT

Contributing

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

Author

Ovi ren

[email protected]

Changelog

1.0.0

  • Initial release
  • Static file serving
  • Live reload functionality
  • Directory listing
  • Command line options
  • Beautiful error pages