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

restartly

v1.3.3

Published

A high-performance, developer-friendly automatic reload tool.

Downloads

558

Readme

↺ Restartly Ultra

v1.3.3 - The Premium Automatic Reload Tool for Modern Developers

npm version License: MIT PRs Welcome

High-performance. Developer-friendly. Stylish.
Built for speed, styled for impact, and designed to keep you in the flow.

WebsiteDocumentationGitHub


🚀 Why Restartly?

Most reload tools are functional but generic. Restartly is a next-generation utility designed to make your development process feel as premium as your code.

  • Turbo Speed: Instant process reloads with sub-millisecond overhead.
  • Premium UI: A beautiful, high-contrast terminal experience with custom ASCII art.
  • 🌍 Universal Support: Native detection for Bun, Node.js, and all major frameworks.
  • 🔍 Auto-Detection: Zero-config mode that finds your entry point automatically.
  • ⌨️ Interactive CLI: Type rs to restart manually at any time.
  • 🔐 Environment Support: Automatic .env loading powered by dotenv.
  • 🛠️ Framework Intelligence: Built-in support for Hono, Remix, Astro, Next.js, and more.
  • ⚙️ Powerfully Simple: Unified configuration via restartly.json.
  • 🛡️ Reliable Runner: Advanced child process management with custom termination signals.
  • 📦 Modern Stack: Built from the ground up with TypeScript and ESM.

🛠️ Installation

Get started in seconds. Install globally or as a dev dependency.

# Install globally
npm install -g restartly

# Or install in your project
npm install --save-dev restartly

⚡ Quick Start

Restartly is smarter than your average reloader.

Zero Config (Auto-Detect)

If you have an index.js, server.js, or app.js, just run:

restartly

Manual Mode

Specify your entry point explicitly:

restartly app.ts

Framework Support

Restartly automatically detects and configures the best dev command for:

  • Hono / Express / Fastify
  • Next.js / Nuxt / Remix / Astro / SvelteKit
  • NestJS / AdonisJS / Strapi
  • Bun (Auto-switches to bun runtime)

Custom Execution

Need to run something else? Restartly handles it:

restartly --exec "python3 api.py"

⚙️ Configuration

Store your settings in a restartly.json file at the root of your project for a seamless experience.

{
  "script": "src/main.ts",
  "watch": ["src", "config"],
  "ignore": ["**/*.test.ts", "dist"],
  "debounce": 300,
  "exec": "tsx"
}

CLI Options

| Option | Shorthand | Description | Default | | :----------- | :-------- | :----------------------------------- | :------------------- | | --watch | -w | Paths to monitor for changes | . | | --ignore | -i | Patterns to ignore (globs supported) | node_modules, .git | | --exec | -x | Custom execution command | node | | --debounce | -d | Delay before reload (ms) | 200 | | --delay | -l | Delay before restarting (ms) | 0 | | --signal | -s | Signal to send for termination | SIGTERM | | --polling | -p | Use file system polling | false | | --env | -e | Path to .env file | .env | | --verbose | -v | Enable verbose logging | false | | --quiet | -q | Enable quiet mode | false | | --config | -c | Path to custom config file | restartly.json | | --list | | List all commands and flags | - |


🎨 Premium Experience

Restartly isn't just a tool; it's a visual upgrade for your terminal. Experience a high-performance runner that actually looks good while you work.


🤝 Contributing

We love contributions! Whether it's a bug fix, a new feature, or an improvement to the documentation, feel free to open a Pull Request.

  1. Fork the Repository
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

📄 License

Distributed under the MIT License. See LICENSE for more information.

Built with ❤️ by TheNeovimmer