A end-to-end udp javascript server.
This server is designed for small device communication via UDP network protocol.
To install the dependencies, is recommended the yarn package manager:
yarn install
After, run the following command in the server root directory:
yarn start
yarn dev
The server will run on the port 8000
;
This project uses Jest test framework, and the project contains the following structure:
├── __tests__ # Automated tests
├── src # Source files
├── tmp # Temporary files (logs and storage)
├── jest.config.js # Jest configuration file
├── package.json # Dependencies and scripts config
└── yarn.lock # yarn dependencies configuration file
Linkedin Profile – Messias Geovani / email – messias.geovani.lima@gmail.com
https://github.com/messiasGeovani
- Fork it (https://github.com/messiasGeovani/Nodejs-udpServer/fork)
- Create your feature branch (
git checkout -b feature/fooBar
) - Commit your changes (
git commit -am 'Add some fooBar'
) - Push to the branch (
git push origin feature/fooBar
) - Create a new Pull Request