Skip to content

Commit fdfddff

Browse files
committed
Initial version
1 parent 35c1a44 commit fdfddff

23 files changed

+2691
-0
lines changed

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.DS_Store
2+
.rpt2_cache
3+
node_modules
4+
coverage
5+
dist
6+

.travis.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: node_js
2+
branches:
3+
only:
4+
- master
5+
cache:
6+
yarn: true
7+
directories:
8+
- node_modules
9+
notifications:
10+
email: false
11+
node_js:
12+
- node
13+
script:
14+
- npm run test:prod && npm run build

LICENSE

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
Copyright 2017 Malthe Borch <[email protected]>
2+
3+
This program is free software: you can redistribute it and/or modify
4+
it under the terms of the GNU General Public License as published by
5+
the Free Software Foundation, either version 3 of the License, or
6+
(at your option) any later version.
7+
8+
This program is distributed in the hope that it will be useful,
9+
but WITHOUT ANY WARRANTY; without even the implied warranty of
10+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11+
GNU General Public License for more details.
12+
13+
You should have received a copy of the GNU General Public License
14+
along with this program. If not, see <https://www.gnu.org/licenses/>.

README.md

+62
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,65 @@
1+
# ts-postgres
2+
3+
[![Build Status](https://secure.travis-ci.org/malthe/ts-postgres.svg?branch=master)](http://travis-ci.org/malthe/ts-postgres)
4+
<span class="badge-npmversion"><a href="https://npmjs.org/package/ts-postgres" title="View this project on NPM"><img src="https://img.shields.io/npm/v/ts-postgres.svg" alt="NPM version" /></a></span>
5+
<span class="badge-npmdownloads"><a href="https://npmjs.org/package/ts-postgres" title="View this project on NPM"><img src="https://img.shields.io/npm/dm/ts-postgres.svg" alt="NPM downloads" /></a></span>
6+
7+
Non-blocking PostgreSQL client for Node.js written in TypeScript.
8+
9+
### Install
10+
11+
```sh
12+
$ npm install ts-postgres
13+
```
14+
15+
### Features
16+
17+
* Binary protocol
18+
* Pipelined queries
19+
* Extensible value model
20+
* Flexible query result
21+
* Asynchronous iteration or all-at-once
22+
* Result data is available in either array or map form
23+
24+
---
25+
26+
## Usage
27+
28+
The client uses an async/await-based programming model.
29+
30+
The default result value is simply "arrays of arrays" (rows and columns). To get each row as a map from column names to values use the ``asMapArray()`` method as illustrated in the following example.
31+
32+
```typescript
33+
import { Client } from 'ts-postgres';
34+
const client = new Client();
35+
36+
await client.connect()
37+
38+
const query = client.query('SELECT $1::text as message', ['Hello world!']);
39+
const result = await query.asMapArray();
40+
console.log(result[0].get('message'));
41+
42+
await client.end()
43+
```
44+
45+
## Notes
46+
47+
Queries are sent using the prepared statement variant of the extended query protocol. In this variant, the type of each parameter is determined prior to parameter binding, ensuring that values are encoded in the correct format.
48+
49+
Multiple queries can be sent at once, without waiting for results. The client automatically manages the pipeline and maps the result data to the corresponding promise. Note that each client opens exactly one connection to the database and thus, concurrent queries ultimately execute "first in, first out" on the database side.
50+
51+
## Benchmarking
52+
53+
Use the following environment variable to run tests in "benchmark" mode.
54+
55+
```bash
56+
$ NODE_ENV=benchmark npm run test
57+
```
58+
59+
## Support
60+
61+
ts-postgres is free software. If you encounter a bug with the library please open an issue on the [GitHub repo](https://github.com/malthe/ts-postgres).
62+
163
## License
264

365
Copyright (c) 2018 Malthe Borch ([email protected])

package.json

+80
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
{
2+
"name": "ts-postgres",
3+
"version": "0.1.0",
4+
"description": "PostgreSQL client in TypeScript",
5+
"declaration": true,
6+
"keywords": [
7+
"database",
8+
"postgres",
9+
"postgresql",
10+
"rdbms"
11+
],
12+
"homepage": "https://github.com/malthe/ts-postgres",
13+
"main": "dist/src/index.js",
14+
"types": "dist/src/index.d.ts",
15+
"author": "Malthe Borch <[email protected]>",
16+
"dependencies": {
17+
"ts-typed-events": "^1.1.1"
18+
},
19+
"repository": {
20+
"type": "git",
21+
"url": "git://github.com/malthe/ts-postgres.git"
22+
},
23+
"license": "MIT",
24+
"engines": {
25+
"node": ">=10.7.0"
26+
},
27+
"minNativeVersion": "2.3.0",
28+
"scripts": {
29+
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
30+
"prebuild": "rimraf dist",
31+
"build": "tsc",
32+
"test": "jest --verbose",
33+
"test:watch": "jest --watch",
34+
"test:prod": "npm run lint && npm run test -- --coverage --no-cache"
35+
},
36+
"jest": {
37+
"transform": {
38+
"^.+\\.ts$": "ts-jest"
39+
},
40+
"testEnvironment": "node",
41+
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.ts$",
42+
"moduleFileExtensions": [
43+
"ts",
44+
"js"
45+
],
46+
"coveragePathIgnorePatterns": [
47+
"/node_modules/",
48+
"/test/"
49+
],
50+
"coverageThreshold": {
51+
"global": {
52+
"branches": 70,
53+
"functions": 85,
54+
"lines": 85,
55+
"statements": 85
56+
}
57+
},
58+
"collectCoverage": true
59+
},
60+
"prettier": {
61+
"semi": true,
62+
"singleQuote": true
63+
},
64+
"devDependencies": {
65+
"@types/jest": "^22.0.0",
66+
"@types/node": "^10.11.0",
67+
"colors": "^1.1.2",
68+
"jest": "^22.0.2",
69+
"lint-staged": "^7.1.3",
70+
"prettier": "^1.13.4",
71+
"prompt": "^1.0.0",
72+
"rimraf": "^2.6.1",
73+
"ts-jest": "^23.10.2",
74+
"ts-node": "^6.0.0",
75+
"tslint": "^5.8.0",
76+
"tslint-config-prettier": "^1.1.0",
77+
"tslint-config-standard": "^7.0.0",
78+
"typescript": "^3.1.1"
79+
}
80+
}

src/buffer.ts

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
export class ElasticBuffer {
2+
public offset = 0;
3+
private buffer: Buffer;
4+
5+
constructor(size: number) {
6+
this.buffer = Buffer.allocUnsafe(size);
7+
}
8+
9+
clear() {
10+
this.offset = 0;
11+
}
12+
13+
isEmpty() {
14+
return this.offset === 0;
15+
}
16+
17+
reserve(size: number) {
18+
let length = this.buffer.length;
19+
const offset = this.offset;
20+
const available = length - offset;
21+
22+
if (available < size) {
23+
while (available + length < size) length *= 2;
24+
const buffer = Buffer.allocUnsafe(length * 2);
25+
this.buffer.copy(buffer, 0, 0, offset);
26+
this.buffer = buffer;
27+
}
28+
}
29+
30+
getBuffer(size: number) {
31+
const offset = this.offset;
32+
this.reserve(size);
33+
this.offset += size;
34+
return this.buffer.slice(offset, offset + size);
35+
}
36+
37+
slice(start?: number, end?: number) {
38+
if (typeof end === 'undefined') end = this.offset;
39+
return this.buffer.slice(start, end)
40+
}
41+
}

0 commit comments

Comments
 (0)