We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9cba1bd commit ab726b7Copy full SHA for ab726b7
README
@@ -0,0 +1 @@
1
+The chat.js is a chat application which uses commet to do a both way communcation
src/main.js
@@ -0,0 +1,6 @@
+var http = require('http');
2
+http.createServer(function (req, res) {
3
+ res.writeHead(200, {'Content-Type': 'text/plain'});
4
+ res.end('Chat.js Server ready for interaction\n');
5
+}).listen(process.env.C9_PORT, "0.0.0.0");
6
+console.log('Server running at http://127.0.0.1:9000/');
0 commit comments