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
- Host: GitHub
- URL: https://github.com/cham11ng/chat-application
- Owner: cham11ng
- Created: 2017-06-21T17:00:59.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-23T19:36:20.000Z (almost 9 years ago)
- Last Synced: 2025-07-22T02:53:30.254Z (11 months ago)
- Topics: chat, chat-application, javascript, nodejs, socket-io
- Language: HTML
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)