Questions tagged [deepstream.io]

Deepstream is a Node server that allows clients to sync data, whether they're browsers or mobile applications. It has a caching layer, and supports event-based messaging and RPC.

Deepstream is a Node server that allows clients to sync data, whether they're browsers or mobile applications. It has a caching layer, and supports event-based messaging and RPC.

83 questions
1
vote
1 answer

How to setup a Deepstream service in Kubernetes and have a client connect to it?

I have a working kubernetes cluster, and I'd like to setup a deepstream service on it. I created the following deployment yaml: apiVersion: extensions/v1beta1 kind: Deployment metadata: name: deepstream namespace: db spec: replicas: 1 …
akir94
  • 55
  • 1
  • 8
1
vote
1 answer

Deepstreamhub problems with creating apps

I've been unable to create new apps (or signup for a new ones) on deepstreamhub.com There are no responses on their slack channel and no responses from support. Are anyone out there running serious production systems of deepstreamhub (the hosted…
1
vote
1 answer

deepstream.io redis & rethink not ready

I am trying to set up deepstream.io. My goal is to have a 4 docker container: deepstream the deepstream search redis rethink Redis as well as rethink are running and are accepting connections. Starting deepstream now states that the cache as well…
Pixelartist
  • 378
  • 5
  • 17
1
vote
1 answer

Deepstream.io on Kubernetes cluster

Is it possible to deploy DeepStream and Redis on multi-node cluster using Kubernetes? Docker Compose option is available in DeepStreamHub (https://deepstreamhub.com/open-source/install/docker-compose/) but not finding Kubernetes YAML option. The…
Sheik-Masha
  • 113
  • 6
1
vote
1 answer

Nodejs deepstream connection failure

I am currently following some NodeJS & Deepstream.io.client-js tutorials. But an error occurs while trying to login to the server. I have no idea what that error means but here it is! const express = require('express'), bodyParser =…
1
vote
3 answers

deepstream error listen EADDRINUSE 127.0.0.1:6020

i try to run my first deepstream.io server from this link but i get this error : error: CONNECTION_ERROR | Error: listen EADDRINUSE 127.0.0.1:3003 PLUGIN_ERROR | connectionEndpoint wasn't initialised in…
MBehtemam
  • 7,865
  • 15
  • 66
  • 108
1
vote
2 answers

Integrate with Telerik Nativescript

I am trying to integrate deepstream.io with NativeScript but I am not able to get it to work successfully. There is also no sample code about integration between NativeScript and deepstream.io. I am wondering if it is possible for deepstream.io to…
Sam Liaw
  • 51
  • 2
  • 3
1
vote
1 answer

Delete event not emitted

I'm using a basic Deepstream setup with RethinkDB, but for some reason the delete event is never emitted when a record is deleted? var x = window.deepstream.record.getRecord('test1'); x.subscribe(function(){ console.log('was…
Nick Reed
  • 109
  • 4
1
vote
1 answer

Deepstream query with MongoDB

I have been looking around in the internet on how to query MongoDB using Deepstream. I followed their documentation but it is not working, here is my sample code: const testQuery = JSON.stringify({ table: 'test', query: [ [ 'name', 'eq',…
Website Is Fun
  • 290
  • 6
  • 20
1
vote
2 answers

deepstream list subscribing to data

is it possible in deepstream to subscribe to data using a list? it appears that changes to the data does not trip the subscribe() function, only something like an addEntry() appears to affect the list subscription. const deepstream =…
edwardsmarkf
  • 1,387
  • 2
  • 16
  • 31
1
vote
1 answer

SPA with Deepstream.io HTTP authentication for a login page

Im new in programming and Im trying to use deepstream authentication for a real username and password (already built its API with Hash). It should only redirect to the next page when uses those specific username and password. I want my deepstream…
1
vote
1 answer

What is the diff between data-sync and pub-sub in Deepstream

All: I am pretty new to deepstream, on its website, it described in core concepts section as: data-sync Interactive JSON documents that can be edited and observed. Changes are persisted and synced across clients. and publish-subscribe Many…
Kuan
  • 11,149
  • 23
  • 93
  • 201
1
vote
1 answer

Atomic RPC calls

Could you tell me if an RPC is executed atomically? For example making a transaction between two accounts, I would have an RPC such: 1. client.rpc.provide('xfer', (data, response) => { 2. var srcWallet = getRecord(data.srcWalletId); 3. var…
Perky
  • 43
  • 1
  • 4
1
vote
1 answer

Deepstream.io - Server callback when client disconnects?

I'm building a Multiplayer game with Deepstream using an Authorative server model. My server is just another Node.JS client. Is there any way for my server to find out if any of the connected clients disconnected or closed their connection? Is there…
1
vote
1 answer

Does deepstream requires login after reconnect?

I am building a service which would depend on maintaining a unique session ID for the connected clients. Currently I am using the login() method to return sessionID as a part of userData from deepstream authentication handler. When a client(in…
arunkjn
  • 5,631
  • 5
  • 21
  • 31