Publish a simple NPM package
Install node and NPM
Download the node installation package from node.js official website and perform the installation
NPM has been included in the node. After the installation is completed, check whether the installation is successful by checking the version, and prompt that the output version number is successful
node -v
npm -v
Create and release packages
Create the package directory and finish NPM initialization
mkdir npm-test
cd npm-test
npm init