https://github.com/datsfilipe/wsnode
This project is a websocket using Node to create a realtime application.
https://github.com/datsfilipe/wsnode
express nodejs socket-io typescript websocket
Last synced: about 2 months ago
JSON representation
This project is a websocket using Node to create a realtime application.
- Host: GitHub
- URL: https://github.com/datsfilipe/wsnode
- Owner: datsfilipe
- Created: 2021-04-21T21:54:15.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-08-30T16:55:48.000Z (almost 5 years ago)
- Last Synced: 2025-01-07T23:20:52.012Z (over 1 year ago)
- Topics: express, nodejs, socket-io, typescript, websocket
- Language: HTML
- Homepage:
- Size: 25.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WEBSOCKET
## Description
This project is a websocket using Node to create a realtime application. The app just simulate a basic websocket connection to connect to a socket and send one no customizable message. All the project was made by other person, I was just following he, the link for the video where was created the original project is here.
### Technologies
1. Node
2. Express - v. 4.17.1
3. Socket.io - 4.0.1
### Running project
I used yarn for the entire project, if you prefer to use npm, please note that the tutorial below might be not the best way to make project work, so search about how install dependencies with npm and run scripts, you might have also to modify the scripts section in package.json.
```bash
# Clone the git repository
$ git clone
# Enter the folder created by git clone
$ cd wsnode
# Install dependencies with yarn
$ yarn
# Run app in development mode
$ yarn dev
# Server will be listening on port 3333
```