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

pool-party

v0.2.8

Published

Generic utility for the cool kids to handle pooled resources.

Downloads

36

Readme

Pool Party

NPM version Downloads

Installation

$ npm install --save pool-party

Features

  • Connection pooling
  • Queued requests
  • ES5/6 support (written in ES6, transpiled with Babel)
  • Connection timeout
  • Custom connection validation method
  • Decorate existing connection instance with poolable requests
  • High-water mark to drain connections under low load

Dive In!

var PoolParty = require('pool-party');

var db = new PoolParty({
  // Options
});

Options

factory

type function (Required)

Function to create new connections. Must return a connection wrapped in a {Promise}

destroy

type function (Required)

Function to terminate connections Must return a true/false wrapped in a {Promise}

min

type number

default 0

Minimum number of connections to keep open

max

type number

default 8

Maximum number of connection to have open

timeout

type milliseconds

default 1000 * 60 * 60

Maximum life of a connection before termination

validate

type function

default function(){ return true; }

Function to determine if a connection is still valid

decorate

type array

default []

Array of string method names on the {Connection} class to be "decorated". A decorated method must return a promise.

Dive in!

Click here to view more examples.

var PoolParty = require('pool-party');
var Promise = require('bluebird');
var jsforce = require('jsforce');

// Create a "pool" instance
var db = new PoolParty({
  factory: function(){

    // Create a conneciton instance
    var conn = new jsforce.Connection({
      loginUrl: // LOGIN_URL,
      accessToken: // TOKEN
    });

    // Methods that aren't promisified can't be decorated
    conn.query = Promise.promisify(conn.query, conn);
    conn.login = Promise.promisify(conn.login, conn);

    return conn.login(config.Username, config.Password + config.SecurityToken)
      .then(function(){
        // Return the connection, because `conn.login` doesn't
        return conn;
      });
  },
  destroy: function(conn){
    return new Promise(function(resolve, reject) {
      conn.logout(function(err) {
        if (err) return reject(err);
        resolve(true);
      });
    });
  },
  decorate: ['query','sobject'],
  max: 10
});

Interact with data! Splash fight!

Returns a promise with the transaction results

// Query data!
return db.query(/* SOQL Query */); // Returns a promise with query results

// Update stuff!
return db.sobject('Account__c')
  .then(function(sobject) {
    return sobject.update({/* Cool account stuff */});
  });

Arm Floaties

Be sure not to create multiple PoolParty instances, each instance manages the connection pool so you don't have to!

Ah, man. SalesForce peed in the pool...