项目作者: nileshkant

项目描述 :
Express Js, Typescript, Typeorm and Postgres boilerplate with Unit tests using mocha, chai and Supertest.
高级语言: TypeScript
项目地址: git://github.com/nileshkant/type-express.git
创建时间: 2021-06-17T16:40:58Z
项目社区:https://github.com/nileshkant/type-express

开源协议:MIT License

下载


Express.js, typeorm with postgres boilerplate" class="reference-link"> Express.js, typeorm with postgres boilerplate

bmc-button

Getting started

  1. npm install
  2. npm run dev

Using yarn

  1. yarn
  2. yarn run dev

Using docker

  1. npm run docker:build
  2. npm run docker:start

Note: All script has two versions *:win in package.json is for windows devices. Please change the script according to your platforms supported script. Enhance scripts PR welcome.


Features

  • Express framework
  • TypeScript v4 codebase
  • TypeORM using Data Mapper pattern
  • Docker environment:
    • Easily start local development using Docker Compose with single command
  1. npm run docker:build
  2. npm run docker:start
  • Set local, stage or production environmental variables with type definitions
  • Logging with morgan
  • Unit and integration tests with Mocha, Chai and supertest
  • Linting with ESLint
  • Prettier code formatter
  • Git hooks with Husky and lint-staged
  • Common custom Error handling with 404 route
  • Standard customize error code
  • Upload files using multer
  • Cloudinary api integrated
  • Route parameters validation check before navigating to route

Simple Folder structure

  1. 📦type-express
  2. 📂src
  3. 📦common
  4. 📂errorValidation // custom error handler
  5. 📂errors
  6. 📜bad-request-error.ts
  7. 📜custom-error.ts
  8. 📜database-connection-error.ts
  9. 📜index.ts
  10. 📜not-authorized-error.ts
  11. 📜not-found-error.ts
  12. 📜request-validation-error.ts
  13. 📜error.ts
  14. 📂controller // data quering and business logics
  15. 📜UserController.ts
  16. 📂entity // Typeorm Schemas
  17. 📜User.ts
  18. 📂interface // Typescript interfaces
  19. 📜User.ts
  20. 📂migration // auto generated migration files
  21. 📜1624113550516-initial.ts
  22. 📂routes // routes for each apis
  23. 📂users
  24. 📜index.ts
  25. 📜index.ts // all imported routes from several subfolders
  26. 📜dbServer.ts // typeorm initialization code
  27. 📜index.ts
  28. 📜server.ts // express server initialization code
  29. 📂test // test file using mocha, chai and supertest
  30. 📜User.test.ts
  31. 📜.env // for environment variables
  32. 📜.eslintrc.json
  33. 📜.gitignore
  34. 📜.mocharc.json
  35. 📜.prettierignore
  36. 📜.prettierrc.json
  37. 📜docker-compose.yml
  38. 📜Dockerfile
  39. 📜LICENSE
  40. 📜ormconfig.docker.json
  41. 📜ormconfig.json //multiple connection demonstration
  42. 📜package-lock.json
  43. 📜package.json
  44. 📜README.md
  45. 📜tsconfig.json

Optional Todo list (accepting PR)

  • Login with JWT authentication (e.g. - social media login)
  • Private route middleware check