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

q-wrapped-pg

v1.2.0

Published

A Q-promise node-postgres library wrapper

Downloads

10

Readme

Q-wrapped-pg

A Q-promise node-postgres module wrapper. It will run your function, giving a ready-to-use Client instance using the Q-promise pipeline. Both pooled and non-pooled requests are supported - both provided through unified interface which may make switching from one to another a bit easier.

Build Status Coverage Status

Installation

npm install q-wrapped-pg

Note: The module is using peerDependencies to require Q and pg, so your project may have its own dependencies on both libraries installed.

Usage

Quick and easy

(1.1.x)

If you need to perform just a quick request and get a result the query function might be enough for you. It is similar to node-pg-query. It uses pg.defaults or environment variables as a source for connection settings. You may use pg object exported from the library to set them or call setPg to set your pre-configured instance to be used by wrapper.

Examples

Simple query using built-in pg.defaults:

  var qpg = require("q-wrapped-pg");
  
  // Set defaults to 'pg' exported from wrapper
  var config = {
    user: "username",
    password: "password",
    database: "database",
    host: "localhost"
  };
  Object.keys(config).forEach(function(key){
      qpg.pg.defaults[key] = config[key];
  });

  // Query
  qpg.query("SELECT NOW() as t").spread(function(rows, result) {
      console.log("Current date/time: " + rows[0].t);
      console.log("SQL: " + result.command);
  });

Query with param passing and an external pg instance:


  // Somewhere else...
  var pg  = require("pg"); 
  // Set defaults
  var config = {
    user: "username",
    password: "password",
    database: "database",
    host: "localhost"
  };
  Object.keys(config).forEach(function(key) {
      pg.defaults[key] = config[key];
  });

  // -----------------------------------------

  // Where you want to use wrapper
  var qpg = require("q-wrapped-pg");
  // Set a pre-configured 'pg' instance (or your subclass) to wrapper
  qpg.setPg(pg);
  
  // Query
  qpg.query("SELECT $1::text as name", ["motorro"]).spread(function(rows, result){
      console.log("My name is: " + rows[0].name);
  });

Verbose

Two methods are available:

  • pooled - use to request a database Client from a node-postgres client pool
  • nonPooled - creates a new node-postgres Client instance.

Either function is expecting two or more parameters:

  • connection options - string or object according to node-postgres documentation. Since version 1.1.x the param may be omitted to use pg.defaults or environment variables.
  • operation - a function that is being called upon connection is established. Place your request code here. A Client instance will be passed to the function as a first parameter.
  • The rest of params passed to function will be appended to operation call.

The wrapper will reject upon connection error or operation failure.

The wrapper takes care of correctly cleaning up either client by calling done or client.end internally when your operation finishes as long as a promise is returned from it.

Examples

Here is a slightly modified original example from node-postgres page.

pooled

Uses node-postgres pooling service to get a client for you. Client instance is passed to your function as a first parameter. Return a promise from your operation and done callback provided to original pg.query callback will be called after the operation promise is fulfilled or rejected. If connection error occurs, operation never gets called.

  var qpg = require("q-wrapped-pg");
  var conString = "postgres://username:password@localhost/database";

  // Take client from client pool
  qpg.pooled(
      conString,
      function(client, num) {
          // A simple query example where a callback function
          // with error management is fulfilled by Q-promise
          return Q.ninvoke(
              client,
              "query",
              {
                  text: 'SELECT $1::int AS number',
                  values: [num]
              }
          ).then(
              // Produce final result for the outside caller
              function(result) {
                  return result.rows[0].number;
              }
          );
      },
      "1" // Extra parameter
  ).then(
      function(passedParam) {
          console.log("Passed param: " + passedParam);
          // Output: Passed param: 1
      },
      function(reason) {
          console.log("Connection or query error: ");
          console.log(reason);
      }
  ).finally(
      function() {
          // Close all database connections when done
          // Original pg is exported for convenience
          qpg.pg.end();
      }
  );

nonPooled

Creates a new node-postgres Client and connects it to database. Your operation should follow the same guideline - accept a Client as a first param, use it and return a promise. Client.end will be called whenever your promise fulfills or rejects. If connection error occurs, operation never gets called.

  // Create new `Client` instance and use it
  qpg.nonPooled(
      conString,
      function(client) {
          // Client is an ordinary node-postgres client
          // so you may use it in any traditional way.
          // Just produce a promise as a function result
          // so the wrapper knows when you are done.
          var deferred = Q.defer();
          client.query(
              'SELECT NOW() as "theTime"',
              function(err, result) {
                  if (err) {
                      return deferred.reject(err);
                  }
                  deferred.resolve(result.rows[0].theTime);
              }
          );
          return deferred.promise;
      }
  ).done(
      function(currentDateTime) {
          console.log("Current date/time: " + currentDateTime);
          // Output: Current date/time: Fri Feb 06 2015 03:16:35 GMT+0000 (UTC)
      },
      function(reason) {
          console.log("Connection or query error: ");
          console.log(reason);
      }
  );

Transactions

(1.2.x)

If you want your operation (or a complex operation) to be wrapped to transaction operators use transaction helper. Thus BEGIN will be executed using the same client instance before control is handled to your operation. If operation succeeds (it's promise gets resolved) the COMMIT will be executed otherwise (if operation promise rejects) ROLLBACK will fire:

  // Create new `Client` instance and use it
  qpg.pooled(
      conString,
      qpg.transaction(function(client) {
          // A simple query example where a callback function
          // with error management is fulfilled by Q-promise
          return Q.ninvoke(
              client,
              "query",
              'SELECT NOW() as "theTime"',
          ).then(
              // Produce final result for the outside caller
              function(result) {
                  return result.rows[0].theTime;
              }
          );
      });
  ).done(function(currentDateTime) {
      console.log("Current date/time: " + currentDateTime);
  });

Commands as operations

(1.2.x)

Passing a command-pattern object for operation is now supported. The object should have an execute method which accepts a client instance and returns a promise:

var SomeCommand = function() {
  this.execute = function(client, param) {
    return Q("This is a command param: " + param);
  }
};

qpg.pooled(conString, new SomeCommand(), "some value").then(function(result){
  console.log(result);
});