shzam
v0.5.1
Published
Nodejs-expressjs starter kit with boilerplate code CLI
Downloads
15
Maintainers
Readme
Shzam
This is an open-source Project that provides a starter template for building Node.js with TypeScript. The project comes with a clean folder structure, ESLint, Prettier, and Jest, making it easy for developers to write clean and maintainable code while promoting best practices for new projects.
Getting Started
To get started with this project, follow the steps below:
- install the package
npm i -g shzam
- To create project run
shzam init
- If you are using the Nodejs/Expressjs template and would like to create a module with basic CRUD boilerplate, simply use the command
shzam addApp
.
Note
If you are using the Node.js/Express.js/MongoDB template, make sure to set up MongoDB and ensure that you provide the correct url
, username
, and password
.
Currently supported
currently it only have 2 templates.
Empty Template :- This template does not include any framework; it only has basic Node.js and TypeScript configurations.
Nodejs/Expressjs :- This template comes with the basic configuration of Express.js and Node.js with TypeScript, along with some boilerplate code that can speed up the development process. Additionally, it also contains a test example.
Module Generater :- You can easly create Modules with basic crud boiler plate by running
shzam addApp
.
Planned For the Future
Graphql Support
prisma Support
Reactjs/Typescript boilerplate template
Design Pattern
We are promoting the use of the 'Repository pattern'. The Node.js/Express.js example project demonstrates the use of the boilerplate, and our aim is to minimize the amount of code that programmers need to write. I have come up with this folder structure based on my experience with different frameworks that I have used.
Folder structure
├── jest.config.ts
├── nodemon.json
├── src
│ ├── app.ts
│ ├── apps // This were the modules goes
│ │ ├── Demo
│ │ │ ├── demo.controller.ts
│ │ │ ├── demo.router.ts
│ │ │ ├── demo.schema.ts
│ │ │ ├── index.ts
│ │ │ └── model
│ │ │ ├── index.ts
│ │ │ ├── model.ts
│ │ │ └── repository.ts
│ │ └── index.ts
│ ├── config.ts
│ ├── core
│ │ ├── ApiError.ts
│ │ ├── ApiResponse.ts
│ │ └── Logger.ts
│ ├── database.ts
│ ├── helpers
│ │ ├── asyncHandler.ts
│ │ ├── utils.ts
│ │ ├── validator.ts
│ │ └── withErrorHandling.ts
│ ├── server.ts
│ └── tests
│ ├── apps
│ │ └── demo.test.ts
│ └── setup.ts
└── tsconfig.json
Features
This project starter comes with the following features:
- TypeScript: This project uses TypeScript, making it easy to write and maintain code.
- Express: This project uses Express, a popular Node.js web framework. Clean Folder Structure: The project follows a clean folder structure that makes it easy to navigate and maintain.
- ESLint: The project comes with ESLint, which helps identify and fix common code issues and maintain a consistent coding style.
- Prettier: The project comes with Prettier, which ensures code formatting is consistent across the project.
- Jest: The project comes with Jest, a popular testing framework for JavaScript.
License
This project is licensed under MIT licensed.