Back to NotesDevelopment Best Practices
MD Pabel / May 15, 2024
Table of contents
NodeJS folder structure
Loading code...
Git commit message types:
- build: Changes related to building the project or its dependencies.
- chore: Regular maintenance tasks, such as updating dependencies or refactoring 3. code without impacting functionality.
- ci: Changes to the Continuous Integration (CI) configuration or scripts.
- docs: Documentation-related changes, including adding or updating documentation.
- feat: New features or functionalities added to the project.
- fix: Bug fixes or corrections to existing code.
- perf: Performance improvements or optimizations.
- refactor: Code refactoring that does not change its external behavior.
- revert: Reverting a previous commit.
- style: Changes that do not affect the code's functionality, such as formatting, indentation, or whitespace.
- test: Adding, updating, or fixing tests.