jhipster-architectural-comparison

(★ 17)

Initialization of a JHipster project - Monolithic vs Microservice Application

File Explorer

  • .editorconfig
  • .eslintignore
  • .eslintrc.json
  • .gitattributes
  • .gitignore
  • .huskyrc
  • .lintstagedrc.js
  • .prettierignore
  • .prettierrc
  • .yo-rc.json
  • angular.json
  • checkstyle.xml
  • mvnw
  • mvnw.cmd
  • package-lock.json
  • package.json
  • pom.xml
  • postcss.config.js
  • proxy.conf.json
  • README.md
  • sonar-project.properties
  • tsconfig-aot.json
  • tsconfig.json
  • tslint.json

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

java

View Details ▼

Java application launcher.

java {{classname}}

Execute a Java `.class` file that contains a main method by using just the class name:

java -classpath {{path/to/classes1}}:{{path/to/classes2}}:. {{classname}}

Execute a Java program and use additional third-party or user-defined classes:

java -jar {{filename.jar}}

Execute a `.jar` program:

🔍

jhipster

View Details ▼

Web application generator using either monolithic or microservices architecture.

jhipster

Generate a simple full-stack project (monolithic or microservices):

jhipster --skip-server

Generate a simple frontend project:

jhipster --skip-client

Generate a simple backend project:

🔍

ng generate

View Details ▼

Generate and/or modify files based on a schematic.

ng {{[g|generate]}} ai-config

Generate AI configuration files for Angular project:

ng {{[g|generate]}} {{[s|service]}} {{service_name}}

Create a new service:

ng {{[g|generate]}} {{[app|application]}} {{app_name}}

Generate a new application within the workspace:

🔍

npm help

View Details ▼

Display an overview of `npm` syntax, frequently used commands, and a short description of each command.

npm help {{command}}

Display the documentation for a specific command:

🔍

npm install

View Details ▼

Install Node packages.

npm {{[i|install]}}

Install dependencies listed in `package.json`:

npm {{[i|install]}} {{package_name}}@{{version}}

Download a specific version of a package and add it to the list of dependencies in `package.json`:

npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}

Download the latest version of a package and add it to the list of dev dependencies in `package.json`:

🔍

npm run

View Details ▼

Run a script.

npm run

List available scripts:

npm run {{script_name}}

Run a script:

npm run {{script_name}} -- {{argument}} {{--option}}

Pass arguments to a script:

🔍

npm start

View Details ▼

This command is an alias of `npm run start`.

tldr npm run

View documentation for the original command:

🔍

npm test

View Details ▼

This command is an alias of `npm run test`.

tldr npm run

View documentation for the original command:

🔍

npm update

View Details ▼

Update packages in the current project.

npm {{[up|update]}}

Update all packages in the current project:

npm {{[up|update]}} {{package}}

Update a specific package in the current project:

npm {{[up|update]}} {{package}} {{[-g|--global]}}

Update a package globally:

🔍

script

View Details ▼

Record all terminal output to a typescript file.

script

Record a new session to a file named `typescript` in the current directory:

exit

Stop recording:

script {{path/to/session.out}}

Record a new session to a custom filepath:

// repository documentation