- 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.
推薦閱讀
- CockroachDB權威指南
- TestNG Beginner's Guide
- 數據結構習題精解(C語言實現+微課視頻)
- 數據結構與算法JavaScript描述
- WordPress Plugin Development Cookbook(Second Edition)
- 網店設計看這本就夠了
- Web程序設計(第二版)
- Drupal 8 Configuration Management
- Getting Started with Laravel 4
- ElasticSearch Cookbook(Second Edition)
- Getting Started with Nano Server
- Natural Language Processing with Python Quick Start Guide
- 視窗軟件設計和開發自動化:可視化D++語言
- PHP Microservices
- Java程序設計教程