├── .editorconfig ├── .eslintignore ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── feature_request.yml ├── PULL_REQUEST_TEMPLATE.md ├── commit-convention.md └── workflows │ └── ci.yaml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── SECURITY.md ├── bin ├── create-express-app.js └── ex.js ├── eslint.config.js ├── index.js ├── package.json ├── public └── images │ ├── app.svg │ └── create-ex-app.svg ├── src ├── commands │ ├── createAuth.js │ ├── createController.js │ ├── createMiddleware.js │ ├── createModel.js │ ├── createRoute.js │ └── createService.js ├── config │ ├── configCreator.js │ └── gitignoreTemplate.js └── utils │ ├── configLoader.js │ ├── copyUtils.js │ ├── createTemplate.js │ ├── createTypeScriptTemplate.js │ └── getOrmName.js └── templates ├── _common ├── .editorconfig └── README.md ├── javascript ├── mongodb-mongoose │ ├── .editorconfig │ ├── .env.example │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.js │ ├── package.json │ ├── public │ │ └── images │ │ │ └── app.svg │ └── src │ │ ├── app.js │ │ ├── config │ │ ├── constants.js │ │ ├── database.js │ │ └── environment.js │ │ ├── controllers │ │ ├── index.js │ │ └── user.controller.js │ │ ├── middlewares │ │ ├── asyncHandler.js │ │ ├── errorHandler.js │ │ ├── index.js │ │ ├── morgan.middleware.js │ │ └── notFoundHandler.js │ │ ├── models │ │ └── user.model.js │ │ ├── routes │ │ ├── index.js │ │ └── user.routes.js │ │ ├── server.js │ │ ├── services │ │ ├── index.js │ │ └── user.service.js │ │ └── utils │ │ └── logger.js ├── none │ ├── .editorconfig │ ├── .env.example │ ├── .gitignore │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── eslint.config.js │ ├── package.json │ ├── public │ │ └── images │ │ │ └── app.svg │ └── src │ │ ├── app.js │ │ ├── config │ │ ├── constants.js │ │ └── environment.js │ │ ├── controllers │ │ ├── index.js │ │ └── user.controller.js │ │ ├── middlewares │ │ ├── asyncHandler.js │ │ ├── errorHandler.js │ │ ├── index.js │ │ ├── morgan.middleware.js │ │ └── notFoundHandler.js │ │ ├── routes │ │ ├── index.js │ │ └── user.routes.js │ │ ├── server.js │ │ ├── services │ │ ├── index.js │ │ └── user.service.js │ │ └── utils │ │ └── logger.js └── sql-sequelize │ ├── .editorconfig │ ├── .env.example │ ├── .gitignore │ ├── README.md │ ├── package.json │ ├── public │ └── images │ │ └── app.svg │ └── src │ ├── app │ └── app.js │ ├── config │ └── database.js │ ├── controllers │ └── index.js │ ├── index.js │ ├── middlewares │ └── errorHandler.js │ ├── models │ ├── index.js │ └── user.model.js │ ├── routes │ └── index.js │ ├── services │ └── index.js │ └── utils │ └── logger.js └── typescript ├── mongodb-mongoose ├── .editorconfig ├── .env.example ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── eslint.config.ts ├── package.json ├── public │ └── images │ │ └── app.svg ├── src │ ├── app.ts │ ├── config │ │ ├── constants.ts │ │ ├── database.ts │ │ ├── environment.ts │ │ └── index.ts │ ├── controllers │ │ ├── index.ts │ │ └── user.controller.ts │ ├── middlewares │ │ ├── asyncHandler.ts │ │ ├── errorHandler.ts │ │ ├── morgan.middleware.ts │ │ └── notFoundHandler.ts │ ├── models │ │ ├── index.ts │ │ └── user.model.ts │ ├── routes │ │ ├── index.ts │ │ └── user.routes.ts │ ├── server.ts │ ├── services │ │ ├── index.ts │ │ └── user.service.ts │ ├── types │ │ └── global.d.ts │ └── utils │ │ ├── ApiError.ts │ │ └── logger.ts └── tsconfig.json ├── none ├── .editorconfig ├── .env.example ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── eslint.config.ts ├── package.json ├── public │ └── images │ │ └── app.svg ├── src │ ├── app.ts │ ├── config │ │ ├── constants.ts │ │ ├── environment.ts │ │ └── index.ts │ ├── controllers │ │ ├── index.ts │ │ └── user.controller.ts │ ├── middlewares │ │ ├── asyncHandler.ts │ │ ├── errorHandler.ts │ │ ├── morgan.middleware.ts │ │ └── notFoundHandler.ts │ ├── models │ │ ├── index.ts │ │ └── user.model.ts │ ├── routes │ │ ├── index.ts │ │ └── user.routes.ts │ ├── server.ts │ ├── services │ │ ├── index.ts │ │ └── user.service.ts │ ├── types │ │ ├── express.d.ts │ │ └── global.d.ts │ └── utils │ │ ├── ApiError.ts │ │ └── logger.ts └── tsconfig.json ├── sql-sequelize ├── .env.example ├── README.md ├── package.json ├── src │ ├── app.ts │ ├── config │ │ ├── database.ts │ │ └── env.ts │ ├── controllers │ │ └── user.controller.ts │ ├── middlewares │ │ └── error.middleware.ts │ ├── models │ │ └── user.model.ts │ ├── routes │ │ └── user.routes.ts │ └── server.ts └── tsconfig.json └── sql-typeorm ├── .env.example ├── README.md ├── package.json ├── public └── images │ └── app.svg ├── src ├── app.ts ├── config │ ├── data-source.ts │ └── env.ts ├── controllers │ └── user.controller.ts ├── entities │ └── User.ts ├── middlewares │ ├── error.middleware.ts │ └── validate.middleware.ts ├── routes │ ├── index.ts │ └── user.routes.ts ├── schemas │ └── user.schema.ts ├── server.ts ├── services │ └── user.service.ts └── utils │ └── logger.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.eslintignore -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/commit-convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.github/commit-convention.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npm run format 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/SECURITY.md -------------------------------------------------------------------------------- /bin/create-express-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/bin/create-express-app.js -------------------------------------------------------------------------------- /bin/ex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/bin/ex.js -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/package.json -------------------------------------------------------------------------------- /public/images/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/public/images/app.svg -------------------------------------------------------------------------------- /public/images/create-ex-app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/public/images/create-ex-app.svg -------------------------------------------------------------------------------- /src/commands/createAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/commands/createAuth.js -------------------------------------------------------------------------------- /src/commands/createController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/commands/createController.js -------------------------------------------------------------------------------- /src/commands/createMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/commands/createMiddleware.js -------------------------------------------------------------------------------- /src/commands/createModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/commands/createModel.js -------------------------------------------------------------------------------- /src/commands/createRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/commands/createRoute.js -------------------------------------------------------------------------------- /src/commands/createService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/commands/createService.js -------------------------------------------------------------------------------- /src/config/configCreator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/config/configCreator.js -------------------------------------------------------------------------------- /src/config/gitignoreTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/config/gitignoreTemplate.js -------------------------------------------------------------------------------- /src/utils/configLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/utils/configLoader.js -------------------------------------------------------------------------------- /src/utils/copyUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/utils/copyUtils.js -------------------------------------------------------------------------------- /src/utils/createTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/utils/createTemplate.js -------------------------------------------------------------------------------- /src/utils/createTypeScriptTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/utils/createTypeScriptTemplate.js -------------------------------------------------------------------------------- /src/utils/getOrmName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/src/utils/getOrmName.js -------------------------------------------------------------------------------- /templates/_common/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/_common/.editorconfig -------------------------------------------------------------------------------- /templates/_common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/_common/README.md -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/.editorconfig -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/.env.example -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/.gitignore -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/.prettierignore -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/.prettierrc -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/README.md -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/eslint.config.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/package.json -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/public/images/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/public/images/app.svg -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/app.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/config/constants.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/config/database.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/config/environment.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/controllers/index.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/controllers/user.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/controllers/user.controller.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/middlewares/asyncHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/middlewares/asyncHandler.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/middlewares/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/middlewares/errorHandler.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/middlewares/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/middlewares/index.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/middlewares/morgan.middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/middlewares/morgan.middleware.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/middlewares/notFoundHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/middlewares/notFoundHandler.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/models/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/models/user.model.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/routes/index.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/routes/user.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/routes/user.routes.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/server.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/services/index.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/services/user.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/services/user.service.js -------------------------------------------------------------------------------- /templates/javascript/mongodb-mongoose/src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/mongodb-mongoose/src/utils/logger.js -------------------------------------------------------------------------------- /templates/javascript/none/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/.editorconfig -------------------------------------------------------------------------------- /templates/javascript/none/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/.env.example -------------------------------------------------------------------------------- /templates/javascript/none/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/.gitignore -------------------------------------------------------------------------------- /templates/javascript/none/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/.prettierignore -------------------------------------------------------------------------------- /templates/javascript/none/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/.prettierrc -------------------------------------------------------------------------------- /templates/javascript/none/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/README.md -------------------------------------------------------------------------------- /templates/javascript/none/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/eslint.config.js -------------------------------------------------------------------------------- /templates/javascript/none/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/package.json -------------------------------------------------------------------------------- /templates/javascript/none/public/images/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/public/images/app.svg -------------------------------------------------------------------------------- /templates/javascript/none/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/app.js -------------------------------------------------------------------------------- /templates/javascript/none/src/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/config/constants.js -------------------------------------------------------------------------------- /templates/javascript/none/src/config/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/config/environment.js -------------------------------------------------------------------------------- /templates/javascript/none/src/controllers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/controllers/index.js -------------------------------------------------------------------------------- /templates/javascript/none/src/controllers/user.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/controllers/user.controller.js -------------------------------------------------------------------------------- /templates/javascript/none/src/middlewares/asyncHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/middlewares/asyncHandler.js -------------------------------------------------------------------------------- /templates/javascript/none/src/middlewares/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/middlewares/errorHandler.js -------------------------------------------------------------------------------- /templates/javascript/none/src/middlewares/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/middlewares/index.js -------------------------------------------------------------------------------- /templates/javascript/none/src/middlewares/morgan.middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/middlewares/morgan.middleware.js -------------------------------------------------------------------------------- /templates/javascript/none/src/middlewares/notFoundHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/middlewares/notFoundHandler.js -------------------------------------------------------------------------------- /templates/javascript/none/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/routes/index.js -------------------------------------------------------------------------------- /templates/javascript/none/src/routes/user.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/routes/user.routes.js -------------------------------------------------------------------------------- /templates/javascript/none/src/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/server.js -------------------------------------------------------------------------------- /templates/javascript/none/src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/services/index.js -------------------------------------------------------------------------------- /templates/javascript/none/src/services/user.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/services/user.service.js -------------------------------------------------------------------------------- /templates/javascript/none/src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/none/src/utils/logger.js -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/.editorconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/.env.example -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/.gitignore -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/README.md -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/package.json -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/public/images/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/public/images/app.svg -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/src/app/app.js -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/config/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/src/config/database.js -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/controllers/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/src/index.js -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/middlewares/errorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/src/middlewares/errorHandler.js -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/src/models/index.js -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/models/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/src/models/user.model.js -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/src/routes/index.js -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/services/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templates/javascript/sql-sequelize/src/utils/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/javascript/sql-sequelize/src/utils/logger.js -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/.editorconfig -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/.env.example -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/.gitignore -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env 4 | -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/.prettierrc -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/README.md -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/eslint.config.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/package.json -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/public/images/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/public/images/app.svg -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/app.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/config/constants.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/config/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/config/database.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/config/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/config/environment.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/config/index.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/controllers/index.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/controllers/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/controllers/user.controller.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/middlewares/asyncHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/middlewares/asyncHandler.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/middlewares/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/middlewares/errorHandler.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/middlewares/morgan.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/middlewares/morgan.middleware.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/middlewares/notFoundHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/middlewares/notFoundHandler.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './user.model'; 2 | -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/models/user.model.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/routes/index.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/routes/user.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/routes/user.routes.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/server.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/services/index.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/services/user.service.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/types/global.d.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/utils/ApiError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/utils/ApiError.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/src/utils/logger.ts -------------------------------------------------------------------------------- /templates/typescript/mongodb-mongoose/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/mongodb-mongoose/tsconfig.json -------------------------------------------------------------------------------- /templates/typescript/none/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/.editorconfig -------------------------------------------------------------------------------- /templates/typescript/none/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/.env.example -------------------------------------------------------------------------------- /templates/typescript/none/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/.gitignore -------------------------------------------------------------------------------- /templates/typescript/none/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/.prettierignore -------------------------------------------------------------------------------- /templates/typescript/none/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/.prettierrc -------------------------------------------------------------------------------- /templates/typescript/none/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/README.md -------------------------------------------------------------------------------- /templates/typescript/none/eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/eslint.config.ts -------------------------------------------------------------------------------- /templates/typescript/none/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/package.json -------------------------------------------------------------------------------- /templates/typescript/none/public/images/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/public/images/app.svg -------------------------------------------------------------------------------- /templates/typescript/none/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/app.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/config/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/config/constants.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/config/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/config/environment.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/config/index.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/controllers/index.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/controllers/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/controllers/user.controller.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/middlewares/asyncHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/middlewares/asyncHandler.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/middlewares/errorHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/middlewares/errorHandler.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/middlewares/morgan.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/middlewares/morgan.middleware.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/middlewares/notFoundHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/middlewares/notFoundHandler.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './user.model'; 2 | -------------------------------------------------------------------------------- /templates/typescript/none/src/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/models/user.model.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/routes/index.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/routes/user.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/routes/user.routes.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/server.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/services/index.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/services/user.service.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/types/express.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/types/express.d.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/types/global.d.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/utils/ApiError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/utils/ApiError.ts -------------------------------------------------------------------------------- /templates/typescript/none/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/src/utils/logger.ts -------------------------------------------------------------------------------- /templates/typescript/none/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/none/tsconfig.json -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/.env.example -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/README.md -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/package.json -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/src/app.ts -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/src/config/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/src/config/database.ts -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/src/config/env.ts -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/src/controllers/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/src/controllers/user.controller.ts -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/src/middlewares/error.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/src/middlewares/error.middleware.ts -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/src/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/src/models/user.model.ts -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/src/routes/user.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/src/routes/user.routes.ts -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/src/server.ts -------------------------------------------------------------------------------- /templates/typescript/sql-sequelize/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-sequelize/tsconfig.json -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/.env.example -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/README.md -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/package.json -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/public/images/app.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/public/images/app.svg -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/app.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/config/data-source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/config/data-source.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/config/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/config/env.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/controllers/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/controllers/user.controller.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/entities/User.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/entities/User.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/middlewares/error.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/middlewares/error.middleware.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/middlewares/validate.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/middlewares/validate.middleware.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/routes/index.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/routes/user.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/routes/user.routes.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/schemas/user.schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/schemas/user.schema.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/server.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/services/user.service.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/src/utils/logger.ts -------------------------------------------------------------------------------- /templates/typescript/sql-typeorm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GausAlMunirTushar/create-express-app/HEAD/templates/typescript/sql-typeorm/tsconfig.json --------------------------------------------------------------------------------