Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,7 @@ A simple and (hopefully) to-the-point tutorial to build your first group-chat ap
Run the program by using

```shell
$ node index.js
$ cd node-groupt-chat
$ npm install
$ npm run dev
```
Binary file added console_error_#11.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,5 @@ io.sockets.on('connection', function(socket) {

const server = http.listen(8080, function() {
console.log('listening on *:8080');
});
});

Loading