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 🙏

© 2024 – Pkg Stats / Ryan Hefner

create-postgresql

v1.0.1723724944026

Published

A command-line interface (CLI) tool to quickly create a temporary PostgreSQL database for development purposes.

Downloads

20

Readme

create-postgresql

A command-line interface (CLI) tool to quickly create a temporary PostgreSQL database for development purposes. The PostgreSQL instance is running in my own server in Hetzner. The database is store automatically deleted every day at midnight UTC.

You can host the backend yourself if you want. The backend source code is available at create-postgresql.

Quick Start

npx create-postgresql

Installation

You can install create-postgresql globally using npm:

npm install -g create-postgresql

Usage

After installation, you can run the CLI tool using the following command:

create-postgresql

This will start the process of creating a temporary PostgreSQL database.

Options

The CLI supports several command-line options:

  • --api-url, -a: Overrides the default backend API URL.
  • --frontend-url, -f: Overrides the default frontend URL.
  • --poll-interval, -p: Polling interval in milliseconds (default: 2000)
  • --max-attempts, -m: Maximum poll attempts (default: 30)

Example usage with options:

create-postgresql --api-url https://api.example.com --frontend-url https://app.example.com

How It Works

  1. When you run the command, it generates a unique session ID.
  2. It opens a verification URL in your default browser.
  3. The CLI waits for you to complete the verification process. This is needed to prevent abuse.
  4. Once verified, the CLI continue its work to create a temporary PostgreSQL database.
  5. Finally, it displays the database credentials and connection information for both the direct and pooled connections. It also runs a quick check to ensure the database is working.

Development

To set up the project for development:

  1. Clone the repository:

    git clone https://github.com/nicnocquee/create-postgresql.git
    cd create-postgresql
  2. Install dependencies:

    npm install
  3. Run the development version:

    npm run dev

Dependencies

  • axios: Promise-based HTTP client for making API requests
  • open: Opens URLs in the user's preferred browser
  • yargs: Command-line argument parser

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License.