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

harbor-baas

v0.2.2

Published

AWS-backed authenticated web app scaffolding tool

Readme

Harbor

A complete backend for your web app, deployed to your own AWS account. No AWS knowledge required.

npm install -g harbor-baas
harbor create MyApp            # deploy your backend (~2 min)
harbor login                   # sign in to Harbor Cloud
harbor link                    # link your AWS account (one-time)
harbor agent                   # design your database with AI
harbor bootstrap               # generate a starter React app
cd myapp-app && npm run dev    # working app with login + database

What's in your backend

Every Harbor backend gives you three things, fully configured and ready to use:

  • Database — A NoSQL database where you store all your app's data. Create tables, insert rows, query data — all through a simple API.
  • Authentication — End-user sign-in and sign-up, out of the box. Email/password works immediately. Add Google, Facebook, or Amazon social login with one command.
  • Secure APIs — Your database is accessed through authenticated APIs. Row-Level Security (RLS) ensures users can only see their own data.

Everything runs in your own AWS account. You own it, you can see it, and there's no vendor lock-in.

Core concepts

CLI

The Harbor CLI is how you create and manage backends. Four commands take you from nothing to a working app:

| Command | What it does | |---|---| | harbor create | Deploys a complete backend to your AWS account | | harbor agent | AI-powered chat to design your database schema | | harbor bootstrap | Generates a React app wired to your backend | | harbor remove | Tears down a backend and all its resources |

Agent

The Harbor Agent is an AI assistant that helps you design your database. Describe what you're building in plain English, and the agent creates the right tables, columns, and security settings.

You: I'm building a todo app. Users should only see their own todos.

Harbor: I'll create a todos table with RLS enabled so each user only
        sees their own rows. Shall I go ahead?

You: yes

Harbor: Done. The todos table is live.

Client libraries

Drop-in React components for authentication and database access:

import { HarborProvider, useHarbor, LoginButton } from '@harbor-baas/react'

function App() {
  const { user, db } = useHarbor()

  // Query your database
  const todos = await db.from('todos').select()
  const [todo] = await db.from('todos').insert({ title: 'Buy milk' })
}

Available for React (@harbor-baas/react) and Next.js (@harbor-baas/next).

Harbor Cloud

Connect your Harbor account to cloud agents like Vercel v0, Lovable, and Bolt. They can create and manage backends in your AWS account through the Harbor API. See Harbor Cloud commands.

Prerequisites

  • Node.js 20+
  • AWS account with credentials configured (~/.aws/credentials or environment variables)

Documentation