NodeJS       Typescript

NodeJS + Typescript + TypeORM


Technologies   |    Configuration   |    Others   

🚀 Technologies

🔧 Configuration

1. Install all dependencies with

$ npm install 

or using yarn

$ yarn

2. Start the dev server

$ npm run dev

or using yarn

$ yarn dev

🎁 Others commands

# Build (compiled to dist/)
$ npm run build

# Run for production (needs npm run build first)
$ npm run start

# Run migrations
$ npm run typeorm migration:run

or using yarn

# Build web (compiled to dist/)
$ yarn build

# Run for production (needs yarn build first)
$ yarn start

# Run migrations
$ yarn typeorm migration:run