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

boltops

v0.0.13

Published

A toolkit for working with bolt.new and bolt.diy (Alpha Release)

Downloads

948

Readme

BoltOps CLI

A toolkit for working with bolt.new and bolt.diy -- currently implements file synchronization.

TL;DR -- run npx boltops@latest guide on your machine if you have node/npm/npx installed, otherwise try running one of the executibles under Assets of a recent release (https://github.com/dialogger-app/boltops-cli/releases) according to your OS/architecture.

Features

  • 🔄 Bi-directional file synchronization
  • 👀 Real-time file watching
  • 🎯 Selective sync with .syncignore support
  • 🔐 Secure authentication
  • 📁 Multi-project workspace support

Installation

npm install -g boltops@latest

Or run directly with npx:

npx boltops@latest [command]

Commands

Host Server

Start a host server to handle file synchronization requests:

BOLTOPS_SECRET=your-secret boltops host --port=8017 ./workspace

Options:

  • --port: Server port number (default: 8017)
  • <workspace>: Path to workspace directory

Copy Files

Copy files from a remote host to a local project directory:

BOLTOPS_SECRET=your-secret boltops copy \
  --project=project-id \
  --host=http://localhost:8017 \
  --clean \
  --sync \
  ./project

Options:

  • --project: Project identifier
  • --host: Host server URL
  • --clean: Remove local files not present on remote
  • --sync: Sync files back when changed after copy
  • <path>: Target project directory

Sync Files

Watch and sync files between local project and remote host:

BOLTOPS_SECRET=your-secret boltops sync \
  --project=project-id \
  --host=http://localhost:8017 \
  --all \
  ./project

Options:

  • --project: Project identifier
  • --host: Host server URL
  • --all: Perform initial sync of all files
  • <path>: Project directory to watch

Environment Variables

  • BOLTOPS_SECRET: Authentication secret (required)
  • BOLTOPS_PROJECT: Default --project identifier
  • BOLTOPS_HOST: Default --host server URL

Environment variables can be set directly or via a .env file.

Selective Synchronization

Create a .syncignore file in /configs/${BOLTOPS_PROJECT}/.syncignore under the host workspace to exclude files from synchronization. Uses glob patterns similar to .gitignore:

# Example .syncignore
node_modules/
*.log
.DS_Store

Note that .git and node_modules directories are always ignored.

Security

  • All commands require a BOLTOPS_SECRET for authentication
  • Communication between client and host is secured with bearer token authentication
  • Host server validates all requests against the configured secret

Examples

  1. Start a host server:
BOLTOPS_SECRET=mysecret123 boltops host ./workspace
  1. Copy files from remote:
BOLTOPS_SECRET=mysecret123 \
BOLTOPS_PROJECT=myapp \
BOLTOPS_HOST=http://localhost:8017 \
boltops copy --clean ./myproject
  1. Start file synchronization:
BOLTOPS_SECRET=mysecret123 \
BOLTOPS_PROJECT=myapp \
BOLTOPS_HOST=http://localhost:8017 \
boltops sync --all ./myproject

License

MIT