https://github.com/matheusadc/chatjs
This project aims to create a chat with a private server between devices that access the same URL.
https://github.com/matheusadc/chatjs
css html javascript nodejs server
Last synced: about 1 month ago
JSON representation
This project aims to create a chat with a private server between devices that access the same URL.
- Host: GitHub
- URL: https://github.com/matheusadc/chatjs
- Owner: MatheusADC
- Created: 2025-01-16T09:19:07.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-01-17T10:02:25.000Z (over 1 year ago)
- Last Synced: 2025-01-17T11:19:12.149Z (over 1 year ago)
- Topics: css, html, javascript, nodejs, server
- Language: CSS
- Homepage:
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#
Description
This project aims to create a chat with a private server between devices that access the same URL.
#
Terminal commands
### Initialize a Node.js project
```
npm init -y
````
### Download the Express package
```
npm install express
```
### Download the Socket.IO package
```
npm install socket.io
```
### Initialize the server
```
node ./servidor.js
```
### Restart the server
```
node --watch ./servidor.js
```