Example how to use Express and TypeORM with TypeScript
clone repository
run npm i
edit ormconfig.json and change your database configuration (you can also change a database type, but don't forget to install specific database drivers)
run npm start
open http://localhost:3000/posts and you'll empty array
use curl, postman or other tools to send http requests to test your typeorm-based API
How to use CLI?
install typeorm globally: npm i -g typeorm
run typeorm -h to show list of available commands
Use docker for development
Build all services
$ docker-compose up -d
Running migrations
$ docker-compose run node sh -c "npm run migration:run"
Running seeder
$ docker-compose run node sh -c "npm run seed:run"