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

appql-cli

v0.0.15

Published

## Getting Started

Readme

Modular NodeJS API Server

Getting Started

Install the AppQL CLI with:

npm insatll -g appql-cli

To create a new repository to house your products, run:

appql create-repository <repo-name>

From within your new repository's root directory, you can add a new project with:

appql create-project <project-name>

This will create a new subdirectory <project-name>. Move the created Docker compose file into your repository root with something like;

mv <project-name>/docker-compose.yml docker-compose.<project-name>.yml

You can now launch your new project with:

docker-compose -f docker-compose.<project-name>.yml up

Navigate to http://localhost:3000 to see the default "hello world" message.

Repository Structure

Repositories in AppQL subscribe to the "monorepo" philosophy and are designed to house multiple projects and facilitate sharing dependent packages. There are several key features to keep in mind:

  • All projects are built using Docker.
  • Shared packages live under the packages subdirectory.
  • Projects live under top-level directories of the same name as the project.
  • Some useful scripts live under scripts.

Project Structure

Projects are broken into two primary subdirectories: server and web. The server subdirectory houses the code needed to launch a PostGraphile API server, and the web subdirectory houses the code for a React based web UI.

Deployment

Both the server and web components of each project come prepared to use Polecat to deploy to a serverless environment. AppQL offers wrappers to more easily launch standard Polecat operations.

To initialise one of your projects for deployment you can run:

appql init-app <project-name> [options]

To create an application deployment:

appql create-deployment <project-name> <deployment-name>

To set secrets for your application, you can use:

appql set-app-secret <project-name> <deployment-name> <secret-name>=<secret-value> ...

To publish your application to a domain:

appql publish-app <project-name> <deployment-name> <domain> [certificate]