Lorenzo Mangani
4124a2db50
Allow externally provided websockets in constructor
...
For consideration (this can also be overloaded in stock gun)
The current ws.js code does not allow providing an external websocket while initializing Gun. This one line patch makes it possible:
```
var myWS= new WebSocket.Server({ noServer: true, path: pathname});
var myGun = new Gun({
ws: { noServer: true, path: '/mygun', web: myWS },
web: myWS
});
```
2020-04-16 21:54:02 +02:00
..
2019-07-24 15:03:54 -07:00
2017-02-16 23:38:34 -08:00
2019-09-19 05:00:28 -07:00
2020-02-21 16:38:26 -08:00
2018-04-19 04:13:55 -07:00
2018-05-22 13:58:49 -07:00
2020-01-20 14:20:25 -08:00
2019-07-12 12:17:08 -07:00
2018-07-17 15:50:42 -07:00
2020-02-21 16:38:26 -08:00
2018-07-22 02:00:00 -07:00
2018-07-17 15:50:42 -07:00
2019-02-10 02:55:51 -08:00
2018-12-06 02:11:08 -08:00
2019-07-04 16:40:22 -07:00
2016-02-09 16:30:47 -08:00
2019-04-16 17:46:49 -07:00
2019-04-16 17:46:49 -07:00
2014-12-18 03:48:01 -07:00
2018-07-22 09:23:13 -07:00
2019-04-25 13:48:50 -07:00
2015-05-29 16:01:00 -07:00
2018-07-17 12:20:37 -07:00
2019-04-19 16:57:33 -07:00
2018-02-06 04:55:16 -08:00
2020-03-22 22:01:37 +02:00
2019-07-26 15:11:40 -07:00
2019-01-27 18:22:21 -08:00
2020-02-08 02:02:36 -08:00
2019-11-17 03:35:12 -08:00
2018-07-22 09:23:13 -07:00
2019-12-30 11:57:28 -08:00
2018-07-17 12:20:37 -07:00
2019-11-07 13:45:32 -08:00
2019-09-30 14:06:29 -07:00
2020-03-06 01:35:14 -08:00
2019-08-03 01:39:27 -03:00
2020-02-10 15:13:37 -08:00
2020-03-06 01:35:14 -08:00
2018-11-17 13:17:16 -08:00
2020-03-04 22:58:25 -08:00
2020-01-31 05:41:26 -08:00
2019-09-30 14:06:29 -07:00
2019-04-19 16:57:33 -07:00
2019-04-19 00:29:38 -07:00
2018-06-26 13:00:26 -07:00
2020-02-10 18:50:01 -08:00
2020-03-03 04:24:54 -08:00
2020-03-02 13:14:04 -08:00
2018-07-22 09:23:13 -07:00
2018-08-18 16:19:39 -07:00
2020-03-02 13:14:04 -08:00
2020-03-04 02:18:49 -08:00
2019-03-10 17:31:13 -03:00
2020-02-06 20:54:42 +08:00
2018-07-17 12:20:37 -07:00
2019-02-10 02:55:51 -08:00
2018-07-17 12:20:37 -07:00
2018-02-13 13:38:28 -08:00
2019-01-31 04:46:34 -08:00
2018-06-07 11:49:59 -07:00
2017-05-30 18:44:21 -04:00
2019-12-30 11:57:28 -08:00
2020-01-31 03:32:56 +07:00
2020-03-02 13:14:04 -08:00
2020-04-16 21:54:02 +02:00
2016-11-10 10:09:18 -07:00
2017-07-06 18:10:41 -07:00
2020-03-31 23:19:36 -07:00