From 5bb93308ebcd8e6d85bf70f58703e63b1909b1e3 Mon Sep 17 00:00:00 2001 From: Brian C Date: Fri, 8 Nov 2013 00:47:52 -0600 Subject: [PATCH] Update README.md --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8da3656..5b55af0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -`npm install pg-copy-streams` +## pg-copy-streams COPY FROM / COPY TO for node-postgres. Stream from one database to another, and stuff. @@ -46,6 +46,12 @@ pg.connect(function(err, client, done) { }); ``` +## install + +```sh +$ npm install pg-copy-streams +``` + ## notice Before you set out on this magical piping journey, you _really_ should read this: http://www.postgresql.org/docs/9.3/static/sql-copy.html, and you might want to take a look at the [tests](https://github.com/brianc/node-pg-copy-streams/tree/master/test) to get an idea of how things work.