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

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.

Awesome Lists containing this project

README

          

# speech bubble Description
This project aims to create a chat with a private server between devices that access the same URL.

# terminal screen 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
```