DEV Community

Cover image for TypeScript Boilerplate
Julian Lasso πŸ‡¨πŸ‡΄
Julian Lasso πŸ‡¨πŸ‡΄

Posted on

TypeScript Boilerplate

I present this initial entry both as a resource for my future self and as a source of interest for those who share my passion.

I have created a specific repository with the purpose of establishing a solid foundation from which to start projects using TypeScript from scratch, focused on server-side development (backend).

The repository in question is hosted at the following address:

https://github.com/ProfeJulianLasso/boilerplate-project-typescript

What does this boilerplate offer?

The focus of this project covers four fundamental aspects:

Unit Testing with Jest: The ability to perform unit tests using the powerful Jest tool has been incorporated.

Static Code Analysis with ESLint: The code undergoes rigorous static analysis through ESLint to ensure its quality and compliance with standards.

Commit Management with Conventional Commits: The Conventional Commits methodology is adopted to maintain a clear and structured record of changes with the help of commitlint.

Code Formatting with Prettier: The code is automatically formatted with Prettier, ensuring consistency in writing style.

In addition to these aspects, the repository makes use of Husky to automate certain tasks when making commits and pushing to the repository.

I invite everyone interested to collaborate on this project, and I would greatly appreciate any comments or observations you can provide.

This is a valuable resource for both those who want to start projects with TypeScript from scratch and those looking to improve their skills in server-side development. I am proud to share this contribution with the community, hoping that it will be beneficial for other professionals and technology enthusiasts.

Top comments (0)