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

sqlpm

v1.7.3

Published

SQL Package Manager

Downloads

120

Readme

sqlpm

sqlpm is a package manager for SQL, designed to help developers manage SQL code similarly to how other programming languages are managed. It offers a command-line interface to create schema projects, manage database configurations, and run SQL scripts against database instances, making it easier to maintain and update your SQL codebase.

Alpha Version

Please note that this project is still in its early stages of development and is considered an alpha version.

If you have stumbled upon it, we would love to hear your feedback and thoughts. You can reach one of the authors by checking the package.json file.

Introduction

sqlpm is a source code package manager for SQL. sqlpm gives SQL access to programming tools other languages have such as:

  • Semantic versioning
  • Behavior and test driven development
  • Reusable installable sql packages
  • Package dependency
  • Support for multiple SQL flavors
  • Works especially well with mono-repos

Introduction

sqlpm is a source code package manager for SQL that empowers SQL with the programming tools and features commonly found in other languages. With sqlpm, you can leverage the following capabilities in your SQL projects:

  • Semantic versioning: Manage and track the versions of your SQL packages with a standardized and meaningful numbering scheme.
  • Package Dependency: Manage the dependencies between SQL packages, ensuring that the correct versions and dependencies are installed and used in your projects.
  • Reusable Installable SQL Packages: Create and distribute reusable SQL packages that can be easily installed and integrated into other projects.
  • Behavior and Test-Driven Development.
  • Support for Multiple SQL Flavors.
  • Works Especially Well with Mono-Repos.
  • Continuous Integration and Continuous Deployment (CI/CD) Support: Integrate your SQL code with modern CI/CD pipelines to automate testing, build, and deployment processes, ensuring consistent and reliable updates to your databases.
  • Environment Management: Easily manage different database environments, such as development, staging, and production, using sqlpm's configuration capabilities, simplifying the deployment and migration process.
  • Modular and Structured SQL Code: Organize your SQL code into modular units and directories, making it easier to understand, maintain, and collaborate on complex database projects.
  • Code Refactoring and Optimization: Utilize sqlpm to efficiently refactor and optimize your SQL code, improving query performance and reducing technical debt in your projects.
  • Collaborative Development: Facilitate team collaboration on SQL projects with standardized tools and conventions, making it easier for developers to work together and contribute to the codebase.

Features

Generate Project

The "Generate Project" feature in sqlpm allows you to quickly set up a new SQL project with the necessary directory structure and files. This feature streamlines the process of starting a new SQL project and ensures that your project follows best practices for organization and structure.

Usage

To generate a new project, run the following command:

sqlpm generate-project ${project-name}

How it Works

sqlpm leverages existing JavaScript development tools to manage SQL source-code:

SQL Packages

Although not specific to sqlpm, we've have started to create some SQL packages ourselves located in the schemas folder of the sqlpm mono-repo. (see persona for an example sqlpm package).