How to start a project on Angular the right way

Click for: original source

How do you start a new project? ng new app and that’s it! Not anymore. If you want to make maintenance and development easier you should be sure to follow these steps. By coding_indian.

The article then describes the following steps:

  • Create the project
  • Install Husky for configuring our git hooks
  • Configure pre-push hook
  • Add ESLint to the project
  • Add lint-staged
  • Add Prettier
  • Add Storybook
  • Add a local server
  • Configure CI/CD pipelines and git checks
  • VSCode extensions

… and much more! And there are code and configuration examples as well in the article for smooth project setup. Nice one!

[Read More]

Tags javascript web-development app-development restful json