Questions tagged [socketstream]

SocketStream is a fast, modular Node.js web framework dedicated to building realtime single-page apps.

SocketStream is a new breed of web framework that uses websockets to push data to the browser in 'realtime'. It makes it easy to create blazing-fast, rich interfaces which behave more like desktop apps than traditional web apps of the past.

By taking care of the basics, SocketStream frees you up to focus on building your social/chat app, multiplayer game, trading platform, sales dashboard, or any kind of web app that needs to display realtime streaming data. All personal tastes (e.g. Vanilla JS vs CoffeeScript, Stylus vs Less) are catered for with optional npm modules that integrate perfectly in seconds, without bloating the core.

SocketStream eases the pain by:

  • Integrating best-of-breed modules to increase productivity
  • Providing a sensible place to put everything
  • Accelerating development with Live Reload and (optional) support for Stylus, Jade, etc
  • Accelerating deployment with integrated asset packing and CDN support
  • Organizing spaghetti client-side code into modules you can require()
  • Working well with all major client-side frameworks (e.g. Backbone, Ember, Angular)
  • Making it easy to hookup Redis, MongoDB, CouchDB or other storage engines
  • Providing an active community to answer your question

SocketStream is MIT licensed.

41 questions
3
votes
1 answer

How does DataWriter's StoreAsync work under StreamSocket?

I am creating socket client (TCP) in Windows Store (8\Metro\RT) app and I am trying to send data using this code: await _socket.ConnectAsync(new HostName(ipAddress), port); _dataWriter = new…
EgorBo
  • 6,120
  • 3
  • 35
  • 40
2
votes
1 answer

How to test an AngularJS/SocketStream/Node.js app using Karma

I am working on an AngularJS application that is delivered by a SocketStream/node.js server. I have an AngularJS service that calls api functions on the SocketStream server and progress has been good so far. But now the time has come to start…
Gert
  • 220
  • 1
  • 3
  • 13
2
votes
1 answer

Using AngularJS with SocketStream

I'd like to use socketstream's RPC over websockets abstraction while using Angular for MVC. Can anyone (probably in the Angular community) point me in the right direction to learn how to use a custom RPC-type data source to update Angular's models…
BHP
  • 985
  • 2
  • 14
  • 18
1
vote
1 answer

have to click twice to trigger Backbone router in IE 6

I'm developing a real time website using socketstream and backbone.js, everything else was just sorted out to be working pretty well for me except the backbone router, it isn't fired correctly when you click the link once, you have to click it twice…
haohello
  • 99
  • 1
  • 1
  • 10
1
vote
1 answer

How to dynamically update a Jade element from client-side CoffeeScript?

I'm trying to dynamically update a table of values using SocketStream. I have a Jade template defining the table: app.jade: table thead tr th key th value tbody - var jadeItems = [{key:'Test',value:'3.1415'},…
retrodrone
  • 5,850
  • 9
  • 39
  • 65
1
vote
0 answers

Exception in monitor thread while connecting to server using mongo-driver-core-4.1.2 jar

I have upgraded mongo java driver 3.12.8 to mongodb-driver-legacy 4.1.2. since then when ever i am trying to up the application in SIT getting below error .if i downgrade the version it works fine but with this…
1
vote
0 answers

Send file from server to client (browser) through socket io using socket.io-stream node package

I am trying to receive a file from the socket io server using socket.io-stream package. I receive a stream but how do I download that stream in a file. The file could be any format. Is there a way to do it as browser js does not have fs package. I…
Dee
  • 53
  • 7
1
vote
1 answer

socket.io-stream write file to disc then when finished emit file path

I have a problem using socket.io-stream, when I send file from client to server. I push file path to mongodb and then save the file to a file-folder. The problem is that while disc is writing the file, the file path is returned to the client before…
Georgi Antonov
  • 1,581
  • 21
  • 40
1
vote
1 answer

Point internet domain name to socketstream application/port

I am looking for guidelines for pointing 3 internet domains to 3 different socketstream 3.x applications. Lets say i have three ss apps running, 99.99.99.1:4010, 99.99.99.1:4020, 99.99.99.1:4030 and i own 3 domains www.myfirstdomain.com,…
user1997614
  • 97
  • 1
  • 9
1
vote
1 answer

How to deliver client code without serving it as a module, but outside the 'libs' folder?

I am preparing a workaround for my problem described in my socketStream/Node.js/Karma question. I decided that karma is really not required to run Jasmine if you have a socketstream server to run your code anyway. I include jasmine files through the…
Gert
  • 220
  • 1
  • 3
  • 13
1
vote
1 answer

integrating yeoman with socketstream

I have been developing angular yeoman project and the development process is elegant with yeoman providing necesaary tools for development purposes. At this stage of the project, we are looking to add socketstream into this project but socketstream…
Kamal Reddy
  • 2,610
  • 5
  • 28
  • 36
1
vote
1 answer

socketstream async call to mysql within rpc actions

First, I need to tell you that I am very new to the wonders of nodejs, socketstream, angularjs and JavaScript in general. I come from a Java background and this might explain my ignorance of the correct way of doing things async. To toy around with…
luksch
  • 11,497
  • 6
  • 38
  • 53
1
vote
1 answer

adding controller later

I'm trying to create an NG app where parts can be enabled/disabled dynamically. The idea is to have an "admin" page, where parts of the app can be enabled or disabled, and then see new functionality appear, in the form of an adjusted menu at the top…
jcw
  • 31
  • 2
1
vote
1 answer

Connect-Auth vs Everyauth vs Passport vs Authom - for realtime web apps?

What are some of the positive and negative comparisons between these for develop realtime web apps? I use SocketStream now.
aaa
  • 316
  • 4
  • 7
1
vote
1 answer

socketstream and 3rd party repos

How can I add a bunch js files but include only one of them for client code? E.g. I need to use hammer.js and want add it as submodule. I can not simply add it in client/code/app cuz SS will try to load all contents of repo (including README.md).
vatson
  • 19
  • 2
1
2 3