My 15+ Reasons to use JHipster

My 15+ Reasons to use JHipster

You are going to have a bootstrap project with a lot of features and functionality already configured and implemented. I will share with you...

Generating your project using JHipster quick start steps

  1. Install Java, Git and Node.js
  2. Install JHipster npm install -g generator-jhipster
  3. Create a new directory and go into it mkdir myApp && cd myApp
  4. Run JHipster and follow instructions on screen jhipster
  5. Model your entities with JDL Studio and download the resulting jhipster-jdl.jdl file
  6. Generate your entities with jhipster jdl jhipster-jdl.jdl

You are going to have a bootstrap project with a lot of features and functionalities already configured and implemented. I will share with you the JHipster features I like the most.

My 15+ Reasons to use JHipster

  1. Update all libraries and framework automatically when upgrading the JHipster version of the project (I upgraded from version 7.1.0 to 7.1.0 smoothly) - https://www.jhipster.tech/upgrading-an-application/
  2. Already configured Husky (configure git hooks for automatic tasks) - https://typicode.github.io/husky
  3. Already configured eslint (javascript code analysis and automatic fix) - https://eslint.org/
  4. Already configured EditorConfig to maintain consistent coding styles for multiple developers working on the same project across various editors and IDEs - https://editorconfig.org/
  5. Already configured BrowserSync the time-saving synchronized browser testing - https://browsersync.io/
  6. Already configured Progressive Web App (PWA) to make your web app application installable on Android when opened inside google chrome - https://blog.ippon.tech/build-a-pwa-in-jhipster/
  7. Already configured spring profiles for development and production - https://www.jhipster.tech/profiles/
  8. When run on dev already generate external IP to access throw your phone or another device on your domestic network
  9. Already configured liquibase. Learn more on How to Use Liquibase to Update the Schema of Your JHipster Application by @avdev4j
  10. Already implemented user management module (registration, login, forgot password, roles)
  11. Every generated code has an automatic test implemented (Angular and Spring Boot), so after using the JHipster generator just run ./mvnw verify and you are ready to go if all tests pass
  12. Already built-in internationalization support!! - jhipster internationalization
  13. The Angular and Spring Boot code is really easy to read and customize! In addition, there are many “helper” classes to assist you with business logic implementation!
  14. Already configured Cypress for end-to-end tests. Learn how to use cypress with Anthony Viard
  15. Already implemented a sophisticated error handler - https://www.jhipster.tech/managing-server-errors/
  16. Created a useful Readme.md file with instructions to explore and run your generated project.

I hope you have the time to try out JHipster. If you have any questions or just want to say something, please, use the comment section 😊

Did you find this article valuable?

Support Renan Franca by becoming a sponsor. Any amount is appreciated!