typeorm / typescript-express-example

Example how to use Express and TypeORM with TypeScript
361 stars 100 forks source link

How can I compile my project? #5

Closed coldpc closed 6 years ago

coldpc commented 6 years ago

Hi, I have a question.I use the typeorm-cli command created the framework, how to compile release to production?

pleerock commented 6 years ago

this is not related to this project. you do it just like with any other typescript project - compile things and run using node src/index.js or you can use ts-node src/index.ts if you want to use ts-node in production. That's it.