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

@liquid-labs/liq-projects

v1.0.0-alpha.15

Published

Plugable-express plugin for core-server managing the liq project lifecycle: the NPM package, playground clone, and GitHub repository triad.

Readme

@liquid-labs/liq-projects

liq-projects is a plugable-express plugin for core-server that manages the full lifecycle of a "project." In this system, a "project" is the union of three artifacts kept in sync: an NPM package (package.json), a local clone in the developer's playground directory (tracked via @liquid-labs/playground-monitor), and a GitHub repository. This plugin owns creating, inspecting, updating, and retiring that triad.

Note on package naming

@liquid-labs/liq-projects (this package) is not the same package as @liquid-labs/liq-projects-lib. They are different packages with different purposes, and the similar names have already caused confusion for at least one contributor investigating this codebase — double-check which package a dependency or import actually refers to:

  • liq-projects (this package) is a plugable-express plugin exposing the /projects/* HTTP routes described below.
  • liq-projects-lib is a separate, lower-level library of framework-agnostic project utilities (e.g. milestone determination, package.json updates), consumed by liq-work and other packages. It shares no code or dependency edge with this package.

Routes

All routes are mounted under /projects (registered in src/handlers/projects/index.js and, for releases, src/handlers/projects/releases/index.js). Most operations exist in two variants: an explicit form naming :projectName, and an "implied" form that infers the project from the current working directory. This table is a summary — full per-parameter documentation is in the generated API reference at docs/index.html; it is not reproduced here.

| Operation | Method | Explicit path | Implied path | Purpose | |---|---|---|---|---| | Create | POST | /projects/create | — | Initializes a local git repo, sets package.json fields, creates and pushes a GitHub repo, and moves the result into the playground. | | Setup | POST | /projects/:projectName/setup | /projects/setup | Applies standard project configuration: origin/main branch naming, issue labels, and milestones. | | Detail | GET | /projects/:projectName/detail | /projects/detail | Reports project inspection info. | | Rename | POST | /projects/:projectName/rename | /projects/rename | Renames the package and moves the playground clone. | | Update | PUT | /projects/:projectName/update | /projects/update | Updates package.json-level project data. | | Document | PUT | /projects/:projectName/document | /projects/document | Generates/manages project documentation — a capability this plugin exposes for other projects (see the naming note above for how that relates to this package's own docs). | | Close | DELETE | /projects/:projectName/close | /projects/close | Closes out a project. | | Archive | PUT | /projects/:projectName/archive | /projects/archive | Verifies a clean, up-to-date git state, then archives the GitHub repository. | | Destroy | DELETE | /projects/:projectName/destroy | /projects/destroy | Deletes the GitHub repository and the local playground copy. | | Publish a release | POST | /projects/:projectName/releases/publish | /projects/releases/publish | Runs npm publish and creates a matching GitHub release. |

Plugable-express integration

This package is loaded into core-server as a plugable-express plugin: src/index.js exports name (registered as core-projects), summary, handlers, and setup — the shape plugable-express expects from a plugin module. Each handler module (one per row in the table above) exports path, method, parameters, help, and func, following plugable-express's route-registration convention. setup() wires GitHub credentials, mounts a PlaygroundMonitor instance onto app.ext._liqProjects, and registers projectName/newProjectName path resolvers used for path-parameter validation.

Modernization status

liq-projects is part of an active modernization effort and is a likely merge candidate into a future consolidated package alongside related project-lifecycle packages. Its package boundary, file layout, and possibly its name may change as that consolidation lands — the route surface and integration details documented here may move to a different package's docs at that point.