Compare commits

...

3 Commits

Author SHA1 Message Date
AJ ONeal
8a88dbe229 update URLs 2018-05-02 11:57:09 -06:00
AJ ONeal
01697a19ea v2.1.1 2017-05-09 12:05:50 -06:00
AJ ONeal
397b751b42 chimney 2017-05-09 11:58:34 -06:00
2 changed files with 6 additions and 7 deletions

View File

@ -53,7 +53,6 @@ function getConnection(opts, verbs, mySocket, retry) {
var wspath = 'ws+unix://' + opts.sock + ':' + pathname + '?' + search;
// https://github.com/websockets/ws/blob/master/doc/ws.md#unix-domain-sockets
// ws+unix:///absolule/path/to/uds_socket:/pathname?search_params
console.log('ws connect', wspath);
ws = new WebSocket(wspath);
ws.on('error', function (err) {

View File

@ -1,6 +1,6 @@
{
"name": "sqlite3-cluster",
"version": "2.1.0",
"version": "2.1.2",
"description": "A wrapper to enable the use of sqlite3 with node cluster via a socket server (i.e. for Raspberry Pi 2).",
"main": "index.js",
"scripts": {
@ -9,7 +9,7 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/coolaj86/sqlite3-cluster.git"
"url": "git+https://git.coolaj86.com/coolaj86/sqlite3-cluster.js.git"
},
"keywords": [
"sqlite3",
@ -18,12 +18,12 @@
"cluster",
"rpi2"
],
"author": "AJ ONeal <coolaj86@gmail.com> (http://coolaj86.com/)",
"license": "Apache-2.0",
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/coolaj86/sqlite3-cluster/issues"
"url": "https://git.coolaj86.com/coolaj86/sqlite3-cluster.js/issues"
},
"homepage": "https://github.com/coolaj86/sqlite3-cluster#readme",
"homepage": "https://git.coolaj86.com/coolaj86/sqlite3-cluster.js",
"dependencies": {
"sqlite3": "^3.0.9",
"ws": "^2.3.1"