Skip to content

Latest commit

 

History

History
53 lines (36 loc) · 1.56 KB

File metadata and controls

53 lines (36 loc) · 1.56 KB

Nodejs Udp Server

A end-to-end udp javascript server.

This server is designed for small device communication via UDP network protocol.

Installation

To install the dependencies, is recommended the yarn package manager:

yarn install

After, run the following command in the server root directory:

Production:
yarn start
Development:
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

Meta

Linkedin Profile – Messias Geovani / email – messias.geovani.lima@gmail.com

https://github.com/messiasGeovani

Contributing

  1. Fork it (https://github.com/messiasGeovani/Nodejs-udpServer/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request