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

node-postgres-hstore

v0.0.6

Published

hstore stringify and parse functions for node-postgres parser/serializing - NO LONGER MAINTAINED

Downloads

24

Readme

node-postgres-hstore

  • NOTE: Sorry, this is no longer maintained, I am currently not active in node.js space. *

Provides basic hstore parsing and stringify methods (stringify / parse) for use with hstore datatype in postgres. Intended to be used with node-postgres. The existing solutions on npmjs didnt handle null correctly, or had other flaws that made it easier to write my own, of course this probably has it own defects and flaws to, it will do for now.

Note: this doesnt do any fancy type metadata serialization, so if you need something other than string -> string/null then hstore isnt a good fit, look at JSON support in postgresql 9.2/9.3.

integration

parser: there doesnt seem to be a clean hook point, the FAQ refers to a test that includes the pgtypes file via a relative path, I couldnt see anything on the primary pg object that we could use, so path hacking it is.

A simple example of what you may have to do (see exp/test.js):

var pg = require('pg');
var hstore = require('../index'); //your code = require('node-postgres-hstore')
var path = require('path');

var conString = "tcp://" + process.env.PGUSER + ":" + 
  process.env.PGPASSWORD + "@localhost/deroku";

// SELECT oid FROM pg_type WHERE typname = 'hstore'

var hstoreOid = 74144; // different for every db

var pgTypes = require(path.join(path.dirname(require.resolve('pg')),'types'));
pgTypes.setTypeParser(hstoreOid, hstore.parse)

var payload = {
  a: 1,
  b: true,
  c: false,
  d: null,
  e: "Matt single' quote",
  f: "Matt double quote\" ",
  g: "/usr/local/bin",
  h: "c:\\windozes\\mshell\\killme"
};

console.log(payload.h)

pg.connect(conString, function(err, client) {
  var query = client.query("SELECT $1::hstore As test", [hstore.stringify(payload)]);
  query.on('row', function(row) {
    console.log(row.test.d)
    console.log(row.test.e)
    console.log(row.test.f)
    console.log(row.test.g)
    console.log(row.test.h)
  });
  query.on('end', function(row) {
    client.end();
    process.exit();
  })
});

serialization: node-postgres doesnt have any extension points for serialization, so you have to do this in your own layers, although it looks like it may come soon query.js#L130

var hstore = require('node-postgres-hstore');
var strOutput = hstore.stringify(payload);

future - node-postgres integration

As of commit accb94b (07/07/12) the unit tests of node-postgres are failing, I suspect this is part of an overhaul as they target node v0.8.x. I will revisit once things have stablized again and attempt to expose a clean way to register parsers, a way to register serializers, and possibly an explicit method to collect up the metadata (oids) for custom types (needs some thought as we dont want to invisibly be hitting the db). TODO: consult with maintainers of node-postgres

install

cd projectdir
npm install --save node-postgres-hstore

tests

See test/simple.js
git clone repo
npm install --dev .
npm test

license

The MIT License