deepstream.io-client-js icon indicating copy to clipboard operation
deepstream.io-client-js copied to clipboard

The Browser / Node.js Client for deepstream.io

Results 11 deepstream.io-client-js issues
Sort by recently updated
recently updated
newest added

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) Commits See full diff in compare...

dependencies

new users, need a straight code to test deepstream on the browser, this is a copy/past code to test deepstream.

On server set these permissions: ``` presence: "*": allow: true record: "*": create: true write: user.id === 'ok' read: true delete: true listen: true notify: true event: "*": publish: true...

If `dsClient.presence.subscribe(username, onPresenceChange)` is called twice, the subsequent unsubscribe call will cause "invalid argument: "user" or "callback" error". `@deepstream/client/dist/presence/presence-handler.js:95 throw new Error('invalid argument: "user" or "callback"'); ^ Error: invalid argument:...

I have been using the presence api some lately and found some things that puzzled me. Using the current latest npm versions: deepstream version: 3.1.2 deepstream.io-client-js version: 2.3.0 When using...

Based on https://github.com/deepstreamIO/deepstream.io/issues/458, records eventually got an explicit write confirmation in a callback. Would it make sense (client-side) to add callback-enabled versions for methods modifying Lists? Currently they only seem...

Versions: * npm: @deepstream/client v4.1.3 * docker: deepstreamio/deepstream.io:latest In this test the `hello-world` record contains a simple object: `{hello: 'world'}`. The test file: ```javascript const deepstream = require('@deepstream/client'); const client...

I have a record "test/johndoe", which is not returned as I would expect. In fact it is empty (see setTimeout). Only when I uncomment the line marked with "

## Setup - client: `deepstream.io-client-js` (v2.3.0) - server: `deepstream.io` (v3.1.0) - client code for subscribing and unsubscribing from Presence: ``` const deepstream = require('deepstream.io-client-js') const client = deepstream('localhost:6030') const userId...

I've seen a lot of issues regarding the `UNSOLICITED_MESSAGE` error but couldn't find something related to my use case: This is the code: ``` const result = client.record.getList( 'search?' +...