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

gres

v0.0.4

Published

CLI scripts for bootstrapping a PostgreSQL database.

Downloads

14

Readme

gres NPM Version Build Status Coverage Status Dependency Monitor

CLI scripts for bootstrapping a PostgreSQL database.

Getting team members set up with your app via lengthy, potentially outdated documentation can result in time-consuming questions. Shorten it all with simple automation.

Installation

Node.js >= 6 and PostgreSQL >= 9 are required. To install, type this at the command line:

npm install gres

API

A dual file convention is used, consisting of .env.sample and .env. Both file names and the paths to them can be customized.

.env.sample will be expected to contain a template of default values for environmental variables. This file should be committed to your project's repository. Here is an example of such a file containing the variable names that this library will look for:

POSTGRES_HOST=localhost
POSTGRES_PORT=
POSTGRES_NAME=myapp
POSTGRES_PASSWORD=myapp
POSTGRES_USER=myapp

.env will contain the real values specific to your development environment. Be sure not to commit this file as it of no use to anyone else and will only expose your sensitive information.

createdb(envPath=".env", envSamplePath=".env.sample")

This function will:

  • …read the contents of the file at envSamplePath if the file at envPath does not exist. Regardless of which is used, a series of confirmations will be prompted where you can overwrite these values for a new file to be written at envPath. Any other custom changes made to the existing file will be preserved.

  • …create a database and database user using the variables within the file at envPath.

const createdb = require('gres/createdb');

const run = async () => {
  try {
    await createdb();
  }
  catch (error) {
    console.error(error);
    process.exitCode = 1;
  }
};

run();

dropdb(envPath=".env")

This function will remove the database and database user described in the file at envPath.

const dropdb = require('gres/dropdb');

const run = async () => {
  try {
    await dropdb();
  }
  catch (error) {
    console.error(error);
    process.exitCode = 1;
  }
};

run();