We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
express-js has a very nice API if you just need a little extra real-time magic. It is clearly quite popular.
express-js
With the new application task approach it should be possible to remove task definitions from the app.js
application
With gulp-socketstream the start could be overridden and socketstream be embedded
gulp-socketstream
socketstream
Perhaps
var socketstream = require('socketstream/gulp');
var express = require('express'); var app = express(); var socketstream = require('socketstream/express')(app); app.socketstream('...', function(req, stream) { });
Takes over the listen call to do it via the socket server
The text was updated successfully, but these errors were encountered:
Make screen cast showing how to add SocketStream to a MEAN demo app
Sorry, something went wrong.
Interesting.
The basic support for express is already on develop. I will need some input/ideas on what API to expose on the Express App.
No branches or pull requests
express-js
has a very nice API if you just need a little extra real-time magic. It is clearly quite popular.With the new
application
task approach it should be possible to remove task definitions from the app.jsWith
gulp-socketstream
the start could be overridden andsocketstream
be embeddedPerhaps
Takes over the listen call to do it via the socket server
The text was updated successfully, but these errors were encountered: