Installing NODE.JS/NPM/EXPRESS/KMC

Source: Internet
Author: User

Http://www.cnblogs.com/seanlv/archive/2011/11/22/2258716.html

1. Download the node. JS official Windows Edition program:
http://nodejs.org/#download
Starting with 0.6.1, node. JS provides two installation options on the Windows platform, the. msi installation file, and an. exe executable file.
I have chosen. EXE file. Because. In addition to copying Node.exe to the C:\Program file (x86) \ Directory and modifying the system path, the MSI installation file does not see any other effect.
I am using a version of 0.6.2:http://nodejs.org/dist/v0.6.2/node.exe

2. Create the D:\nodejs directory and save the Node.exe in this directory. The "D:\nodejs" is added to the system environment variable path, allowing the node application to be executed at any location.

3. Download the NPM source code:
Https://github.com/isaacs/npm/tags
It is important to note that the latest version of NPM in this article is 1.0.106, but this latest version and 1.0.105 are problematic under the Windows platform. So I chose to install the 1.0.104 Version:
https://github.com/isaacs/npm/zipball/v1.0.104

4. Extract the NPM source code into the D:\NPMJS directory.
Complete the installation of NPM by performing the following actions in the Command Prompt window:

D:\>CD NPMJS
D:\npmjs>node Cli.js INSTALL-GF
Other than that:

Node Cli.js install NPM-GF//The latest version of NPM can be installed
node Cli.js install [email protected]-GF//Can install the specified version of NPM
Both of these methods are downloaded and installed from the code base through the network, but the codebase generally retains only the last two versions.

5. After the NPM installation is complete, add "D:\nodejs\node_modules" to the system environment variable Node_path.

6. Install Express:

NPM Install EXPRESS-GD//Installing the latest version of Express
NPM install [email protected]//installation of the specified version of Express

NPM Remove Express-g//Delete Express
For more information on how to use NPM, please refer to the NPM official website: http://npmjs.org


NPM install-g Express-generator
Express has separated the command-line tools ...
Http://www.cnblogs.com/dacheng/p/nodejs.html


The deployment is complete.

D:\>node-v
v0.6.2

D:\>npm-v
1.0.104


We then set out to install the Express framework, with the following instructions:

Express Blog && CD Blog
(blog is the folder name of the installation)

NPM Install
(Install Express and dependent)

NPM start
(It is important to note that the Express 4.x cannot start with node app.js, but instead uses the command NPM start as the boot)

Visit Http://localhost:3000/to see the familiar welcome to Express, proving that the installation was successful.

Then we can try out the new features of 4.0.

Second, installation KMC
Https://github.com/daxingplay/grunt-kmc/blob/master/README.md


NPM Install GRUNT-KMC-GD

Installing NODE.JS/NPM/EXPRESS/KMC

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.