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

base44

v0.0.50

Published

Base44 CLI - Unified interface for managing Base44 applications

Downloads

5,454

Readme

Base44 CLI

Command-line interface for building applications with Base44's backend service.

Base44's backend service provides a managed backend for your applications, including data storage with entities, serverless functions, authentication, and hosting. The CLI lets you:

  • Create projects from templates.
  • Sync resources defined in local code with your Base44 backend.
  • Deploy sites to Base44's hosting platform.

To get started, see the full list of commands below or check out the documentation.

Installation

npm install -g base44

Or run commands directly with npx:

npx base44 <command>

Requires Node.js 20.19.0 or higher.

Quick start

# Authenticate
base44 login

# Create a project
base44 create

The CLI will guide you through project setup. For step-by-step tutorials, see the quickstart guides:

  • Backend only — for headless apps or custom frontends
  • React — full-stack with Vite + React

Commands

| Command | Description | | ------- | ----------- | | create | Create a new Base44 project from a template | | deploy | Deploy all project resources and site to Base44 | | eject | Download the code for an existing Base44 project | | link | Link a local project to a Base44 project | | dashboard open | Open the app dashboard in your browser | | login | Authenticate with Base44 | | logout | Sign out and clear stored credentials | | whoami | Display the current authenticated user | | agents pull | Pull agents from Base44 to local files | | agents push | Push local agents to Base44 | | connectors pull | Pull connectors from Base44 to local files | | connectors push | Push local connectors to Base44 | | entities push | Push local entities to Base44 | | functions deploy | Deploy local functions to Base44 | | secrets list | List project secret names | | secrets set | Set one or more project secrets | | secrets delete | Delete a project secret | | site deploy | Deploy built site files to Base44 hosting | | site open | Open the published site in your browser | | types generate | Generate TypeScript types from project resources |

AI agent skills

When creating a project, base44/skills are automatically installed. These help AI agents understand how to work with Base44 projects.

If you need to install skills manually, use the following command:

npx skills add base44/skills

Help

base44 --help
base44 <command> --help

Version

base44 --version

Beta

The CLI and Base44 backend service are currently in beta. We're actively improving them based on user feedback. Share your thoughts and feature requests on our GitHub Discussions.

Found a bug? Open an issue.

License

MIT