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

tripush

v1.0.0

Published

CLI tool for Tripush - Multi-tenant Travel Website Hosting Platform

Readme

Tripush CLI

Official CLI tool for Tripush - Multi-tenant Travel Website Hosting Platform.

Installation

npm install -g tripush

Quick Start

1. Configure API Key

First, get your API key from Tripush Dashboard, then configure the CLI:

tripush config --api-key YOUR_API_KEY

2. Deploy Your Travel Website

Deploy a travel website from a local directory:

tripush deploy ./my-trip-website

The CLI will guide you through:

  • Choosing a site name
  • Selecting a subdomain
  • Picking a domain

3. List Your Sites

View all your hosted sites:

tripush list

4. Delete a Site

Remove a site:

tripush delete SITE_ID

Commands

tripush config

Configure your API key.

Options:

  • -k, --api-key <apiKey> - Your API key

Example:

tripush config --api-key abc123...

tripush deploy <directory>

Deploy a travel website.

Arguments:

  • directory - Path to your website directory

Options:

  • -n, --name <name> - Site name
  • -s, --subdomain <subdomain> - Subdomain
  • -d, --domain <domain> - Domain ID

Example:

# Interactive mode
tripush deploy ./my-trip

# With options
tripush deploy ./my-trip --name "My Trip" --subdomain mytrip --domain 1

tripush list

List all your hosted sites.

Example:

tripush list

tripush delete <siteId>

Delete a site.

Arguments:

  • siteId - Site ID to delete

Example:

tripush delete 123

Environment Variables

  • TRIP_API_URL - API endpoint (default: https://api.tripush.com)

Example:

export TRIP_API_URL=http://localhost:13000
tripush deploy ./my-trip

Features

  • Easy Deployment - Deploy travel websites with a single command
  • Interactive Setup - Guided prompts for site configuration
  • Subdomain Validation - Automatic validation of subdomain availability
  • Progress Feedback - Beautiful progress indicators during deployment
  • Secure Storage - API keys stored securely in local config
  • Multi-domain Support - Choose from available domains

Requirements

  • Node.js >= 14.0.0
  • npm or yarn

Development

Clone Repository

git clone https://github.com/dustink66/tripush.git
cd tripush/cli

Install Dependencies

npm install

Link for Local Development

npm link

Now you can use tripush command locally.

Test

# Set local API URL
export TRIP_API_URL=http://localhost:13000

# Configure API key
tripush config --api-key YOUR_LOCAL_API_KEY

# Deploy test site
tripush deploy ./test-site

Directory Structure

Your travel website directory should contain:

my-trip-website/
├── index.html          # Home page
├── prepare.html        # Preparation page
├── budget.html         # Budget page
├── notes.html          # Notes page
├── styles.css          # Styles
├── app.js              # JavaScript
└── assets/             # Images and other assets
    ├── photos/
    └── icons/

API Key Permissions

Your API key needs the following permissions:

  • Create sites
  • List sites
  • Delete sites
  • Access domain list

Get your API key from: https://tripush.com/api-keys

Troubleshooting

Invalid API Key

# Verify your API key
tripush config --api-key YOUR_API_KEY

Subdomain Already Taken

Choose a different subdomain during deployment.

Deployment Failed

Check:

  1. Directory exists and contains valid files
  2. API key is valid
  3. Network connection is stable
  4. API server is running

Support

  • Documentation: https://tripush.com/docs
  • Issues: https://github.com/dustink66/tripush/issues
  • Email: [email protected]

License

MIT © Tripush Team

Links