We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9cba1bd + ab726b7 commit 5b04eaeCopy full SHA for 5b04eae
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