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

vizora

v0.1.0

Published

Node.js deployment CLI powered by SSH, Git, npm, and PM2.

Readme

Vizora

Vizora is a simple deployment CLI for Node.js projects.

It deploys your Node.js app to a remote server using SSH, Git, npm, and PM2.

What Vizora Supports

Vizora currently supports Node.js app deployment only.

Your Node.js project should have:

package.json
.env.example
vizora.config.json

Install Locally

From the Vizora repo:

npm install
npm link -w cli

Then check:

vizora --help

Create vizora.config.json

Inside your Node.js project, create:

{
  "name": "my-node-app",
  "repo": "https://github.com/username/my-node-app.git",
  "branch": "main",
  "server": "user@example-server",
  "basePath": "/home/user/apps",
  "preStart": "",
  "start": "npm start"
}

Example with nodemon:

{
  "name": "oauth",
  "repo": "https://github.com/vizzscript/OAuth_Server.git",
  "branch": "master",
  "server": "vizzscript@home-server",
  "basePath": "/home/vizzscript/api",
  "preStart": "npm install nodemon --no-save",
  "start": "npm run dev"
}

Environment Variables

If your project has .env.example, Vizora reads it during deploy and asks for values.

Example .env.example:

PORT=3000
MONGO_URI=mongodb+srv://<username>:<password>@<cluster>/<database>
CLIENT_ID=<google-client-id>
CLIENT_SECRET=<google-client-secret>
REDIRECT_URI=http://localhost:3000/auth/oauth2callback

Values that are blank or use placeholders like <google-client-id> are treated as required.

Deploy

Run this from inside your Node.js project folder:

vizora deploy

Vizora will:

  1. Load vizora.config.json
  2. Read .env.example
  3. Ask for environment values
  4. SSH into the server
  5. Create a new timestamped release
  6. Run npm install
  7. Write .env into the release
  8. Run preStart if configured
  9. Point current to the new release
  10. Start the app with PM2 from current
  11. Show PM2 status

Rollback

Every deploy creates a release folder:

<basePath>/<name>/releases/<yyyy-mm-dd-HHMM>

The active app is always:

<basePath>/<name>/current

PM2 starts the app from current, so rollback can move current back to the previous release:

vizora rollback

Rollback will:

  1. Find the release before the current one
  2. Point current back to that release
  3. Restart the PM2 process
  4. Show PM2 status

Commands

Show logs:

vizora logs

Show more log lines:

vizora logs --lines 200

Show PM2 status:

vizora status

Restart the app:

vizora restart

Roll back to the previous release:

vizora rollback

Stop the app:

vizora stop

Remove the app from PM2:

vizora remove

Remove the app from PM2 and delete deployed files:

vizora remove --files

Remote Folder

Vizora deploys to:

<basePath>/<name>/current

For example:

{
  "name": "oauth",
  "basePath": "/home/vizzscript/api"
}

Deploys to:

/home/vizzscript/api/oauth/current

Releases are stored in:

/home/vizzscript/api/oauth/releases

Notes

  • The remote server must have Git, Node.js, npm, and PM2 installed.
  • The local machine must be able to SSH into the configured server.
  • Vizora preserves the remote .env during repository cleanup.
  • vizora remove --files deletes only the configured app folder.