Express Js, Typescript, Typeorm and Postgres boilerplate with Unit tests using mocha, chai and Supertest.
npm install
npm run dev
Using yarn
yarn
yarn run dev
npm run docker:build
npm run docker:start
Note: All script has two versions
*:win
inpackage.json
is for windows devices. Please change the script according to your platforms supported script. Enhance scripts PR welcome.
npm run docker:build
npm run docker:start
📦type-express
┣ 📂src
┃ ┣ 📦common
┃ ┃ ┗ 📂errorValidation // custom error handler
┃ ┃ ┃ ┣ 📂errors
┃ ┃ ┃ ┃ ┣ 📜bad-request-error.ts
┃ ┃ ┃ ┃ ┣ 📜custom-error.ts
┃ ┃ ┃ ┃ ┣ 📜database-connection-error.ts
┃ ┃ ┃ ┃ ┣ 📜index.ts
┃ ┃ ┃ ┃ ┣ 📜not-authorized-error.ts
┃ ┃ ┃ ┃ ┣ 📜not-found-error.ts
┃ ┃ ┃ ┃ ┗ 📜request-validation-error.ts
┃ ┃ ┃ ┗ 📜error.ts
┃ ┣ 📂controller // data quering and business logics
┃ ┃ ┗ 📜UserController.ts
┃ ┣ 📂entity // Typeorm Schemas
┃ ┃ ┗ 📜User.ts
┃ ┣ 📂interface // Typescript interfaces
┃ ┃ ┗ 📜User.ts
┃ ┣ 📂migration // auto generated migration files
┃ ┃ ┗ 📜1624113550516-initial.ts
┃ ┣ 📂routes // routes for each apis
┃ ┃ ┣ 📂users
┃ ┃ ┃ ┗ 📜index.ts
┃ ┃ ┗ 📜index.ts // all imported routes from several subfolders
┃ ┣ 📜dbServer.ts // typeorm initialization code
┃ ┣ 📜index.ts
┃ ┗ 📜server.ts // express server initialization code
┣ 📂test // test file using mocha, chai and supertest
┃ ┗ 📜User.test.ts
┣ 📜.env // for environment variables
┣ 📜.eslintrc.json
┣ 📜.gitignore
┣ 📜.mocharc.json
┣ 📜.prettierignore
┣ 📜.prettierrc.json
┣ 📜docker-compose.yml
┣ 📜Dockerfile
┣ 📜LICENSE
┣ 📜ormconfig.docker.json
┣ 📜ormconfig.json //multiple connection demonstration
┣ 📜package-lock.json
┣ 📜package.json
┣ 📜README.md
┗ 📜tsconfig.json