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 installAfter, run the following command in the server root directory:
yarn startyarn devThe 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 – [email protected]
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