MD Pabel
Back to Notes

Development Best Practices

MD Pabel

MD Pabel / May 15, 2024

2 min read

Table of contents

NodeJS folder structure

Loading code...

Git commit message types:

  1. build: Changes related to building the project or its dependencies.
  2. chore: Regular maintenance tasks, such as updating dependencies or refactoring 3. code without impacting functionality.
  3. ci: Changes to the Continuous Integration (CI) configuration or scripts.
  4. docs: Documentation-related changes, including adding or updating documentation.
  5. feat: New features or functionalities added to the project.
  6. fix: Bug fixes or corrections to existing code.
  7. perf: Performance improvements or optimizations.
  8. refactor: Code refactoring that does not change its external behavior.
  9. revert: Reverting a previous commit.
  10. style: Changes that do not affect the code's functionality, such as formatting, indentation, or whitespace.
  11. test: Adding, updating, or fixing tests.