Implementation of the server for https://auto-traffic-control.com.
Running Node.js and TypeScript.
Follow the quick start guide at https://auto-traffic-control.com/docs
npm install
To run locally using ts-node
:
npm install
npm run dev
To generate a dist
directory of compiled JavaScript files and run the server from them, use:
npm run build
npm start
- Follow the set up tutorial
- Add
tsconfig.json
with strict type checking - Add
eslint
andprettier
- Figure out how to generate a flight path
- Path finding! Dijkstra's, A*, something else?
- How to avoid collisions...
- Tests?