An open API service indexing awesome lists of open source software.

https://github.com/cham11ng/chat-application

Simple Chat Application using Node.js & Socket.io
https://github.com/cham11ng/chat-application

chat chat-application javascript nodejs socket-io

Last synced: about 1 month ago
JSON representation

Simple Chat Application using Node.js & Socket.io

Awesome Lists containing this project

README

          

# simple-chat-application
Simple Chat Application using Node.js & Socket.io

## Starting Application

* Open Terminal (`Ctrl + Alt + T`)
* Enter command `yarn install`
* Enter command `node index.js`
* Goto http://localhost:3000

## Requirements

Make sure you've installed node and yarn to run this application. If you haven't installed, hit the following commands

```shell
curl -sL https://deb.nodesource.com/setup_7.x | sudo -E bash -
sudo apt install -y nodejs

curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

sudo apt update && sudo apt install yarn
```

# Reference

* Laracasts (Thanks to Jeffrey Way)