- Full Stack Development with JHipster
- Deepu K Sasidharan Sendil Kumar N
- 242字
- 2021-08-27 19:57:41
Node.js
Node.js is a JavaScript runtime environment. It revolutionized the JavaScript world and made JavaScript the most popular development language among developers today (according to https://insights.stackoverflow.com/survey/2017#technology-programming-languages). The Node ecosystem is the largest in the world with over 600,000 packages and is managed by NPM, the default package manager.
The JHipster CLI is a NodeJS application and hence requires NodeJS, to run, and many of the tools used in the generated application will also require NodeJS:
- Check for NodeJS by typing node -v in the Terminal. It should display a version number. Make sure that the version number is greater than 8.9 and corresponds to the latest LTS version of NodeJS.
- If the command is not found or if you have a lower version of NodeJS then you can visit the Node.js website (https://nodejs.org/en/download/) and follow the instructions to install the latest LTS version available. Please note that non-LTS versions (current) might not be stable and it is advised not to use them.
- Once installed, check the command in step 1 again to make sure. As NodeJS alters the environment variables, you would have to open a new Terminal here.
- NPM is automatically installed when you install NodeJS. You can check this by running npm -v in the Terminal.
You can install multiple NPM packages by running the command npm -g install bower gulp-cli CLI or using Yarn, yarn global add bower gulp-cli.
推薦閱讀
- Flask Web全棧開發(fā)實(shí)戰(zhàn)
- C和C++安全編碼(原書第2版)
- 體驗(yàn)設(shè)計(jì)原理:行為、情感和細(xì)節(jié)
- 實(shí)用防銹油配方與制備200例
- INSTANT CakePHP Starter
- Scientific Computing with Scala
- Learning Concurrent Programming in Scala
- 好好學(xué)Java:從零基礎(chǔ)到項(xiàng)目實(shí)戰(zhàn)
- Spring技術(shù)內(nèi)幕:深入解析Spring架構(gòu)與設(shè)計(jì)原理(第2版)
- 一步一步跟我學(xué)Scratch3.0案例
- Python函數(shù)式編程(第2版)
- Practical Maya Programming with Python
- AngularJS UI Development
- 軟件測(cè)試(慕課版)
- Kotlin程序員面試算法寶典