Http server built with TypeScript and Express
The quickest way to get started with voyager is run this step below:
Install npm packages:
npm install
Watch working directory:
npm run watch
Start the dev server without watching file changes:
npm run dev
Lints and checks for formatting problems:
npm run lint
Automatically fixes formatting and linting problems (if possible):
npm run fix
Compiles the source code using TypeScript compiler:
npm run compile
Setup local development environment using Docker:
docker compose up -d --build
or using 'make':
make run