Getting Started With Node and NPM
Getting Started with Node and NPM
Let's start with the basics.
- Install Node.js: https://nodejs.org.
This code will need at least version 5.0.0, but we encourage you to run at least version 10.0.0. If you already had node installed, make sure the version is appropriate by running
node -v
When you install Node.js, you'll want to ensure your
PATHvariable is set to your install path so you can call Node from anywhere.
- Create a new directory named
hello-world, add a newapp.jsfile:
/* app.js */
console.log('Hello World!');
- In the command prompt, run
node app.js.
Your environment variables are set at the time when the command prompt is opened, so ensure to open a new command prompt since step 1 if you get any errors about Node not being found.
- Moving beyond from simple console applications...
/* app.js */
// Load the built-in 'http' module.
const http = require('http');
// Create an http.Server object, and provide a callback that fires after 'request' events.
// 创建一个http.Server对象,并提供在“请求”事件之后触发的回调
const server = http.createServer((request, response) => {
// Respond to the http request with "Hello World" and a basic header.
// 使用“hello World”和基本标头响应http请求
response.writeHead(200, {'Content-Type': 'text/plain'});
response.end('Hello World!\n');
});
// Try retrieving a port from an environment variable, otherwise fallback to 8080.
// 尝试从环境变量中检索端口,否则回退到8080
const port = process.env.PORT || 8080;
// Start listening on the specified port and print out a url to visit.
// 开始在指定的端口上侦听并打印出要访问的URL
server.listen(port);
console.log(`Listening on http://localhost:${port}`);
In the command prompt, run
node app.js, and visit the url that's printed out to the console.To stop the application, run
Ctrl+C.
Working with npm packages
As shown above, it's pretty impressive what you can do with so few lines of code in Node.js. Part of the philosophy of Node.js is that the core should remain as small as possible. It provides just enough built-in modules, such as filesystem and networking modules, to empower you to build scalable applications. However, you don't want to keep re-inventing the wheel every time for common tasks.
如上所示,使用Node.js中的几行代码可以做的事情令人印象深刻。 Node.js的部分哲学是核心应保持尽可能小。 它提供了足够的内置模块,例如文件系统和网络模块,使您能够构建可伸缩的应用程序。 但是,您不想每次都针对常规任务重新发明轮子
Introducing, npm!
npm is the package manager for JavaScript. npm ships with Node.js, so there's no need to install it separately.
npm是JavaScript的软件包管理器。 npm随Node.js一起提供,因此无需单独安装
Using an existing npm package
To get a sense for how to use npm packages in your app, let's try getting started with express, the most popular web framework for Node.js.
为了了解如何在应用程序中使用npm软件包,让我们尝试开始使用“express”(Node.js最受欢迎的Web框架)入门。
- Create a new directory entitled
my-express-app, then installexpressfrom within that directory. Whenexpressis installed, the package and its dependencies appear under anode_modulesfolder.
C:\src> mkdir my-express-app
C:\src> cd my-express-app
C:\src\my-express-app> npm install express
We recommend starting with a short path like C:\src to work around any potential MAX_PATH issues.
- Now, create a new file,
app.js. This code will load the express module we just installed, and use it to start a lightweight web server.
/* app.js */
const express = require('express');
const app = express();
app.get('/', (req, res) => {
res.send('Hello World!');
});
const port = process.env.PORT || 3000;
app.listen(port, () => {
console.log(`Listening on http://localhost:${port}`);
});
- Start the app by running
node app.jsin the command line. Tada!
There are many more packages available at your disposal (200K and counting!). Head on over to https://www.npmjs.com to start exploring the ecosystem.
Most of the packages available via npm tend to be pure JavaScript, but not all of them. For instance, there's a small percentage of native module addons available via npm that provide Node.js bindings, but ultimately call into native C++ code. This includes packages with
node-gyp,node-pre-gyp, andnandependencies. In order to install and run these packages, some additional machine configuration is required (described below).
Managing npm dependencies
Once you start installing npm packages, you'll need a way to keep track of all of your dependencies. In Node.js, you do this through a package.json file.
一旦开始安装npm软件包,您将需要一种跟踪所有依赖项的方法。 在Node.js中,您可以通过“ package.json”文件来实现
- To create a
package.jsonfile, run thenpm initin your app directory.
C:\src\my-express-app> npm init
Npm will prompt you to fill in the details about your package.
Npm会提示您填写有关包裹的详细信息
In the
package.jsonfile, there is a "dependencies" section, and within it, an entry for"express". A value of"*"would mean that the latest version should be used. To add this entry automatically when you install a package, you can add a--saveflag:npm install express --save.To save this as a dev dependency, usenpm install express --save-dev.在package.json文件中,有一个“ dependencies”部分,其中有一个“ express”条目。 值“ *”将表示应使用最新版本。 要在安装软件包时自动添加该条目,可以添加一个--save标志:npm install express --save。要将其另存为dev依赖项,请使用npm install express --save-dev
If you only require a dependency as part of a development environment, then you could/should install the package in the "devDependencies". This is accomplished by using the
--save-devparameter. For example:npm install --save-dev mocha.
Now that your packages are listed in
package.json, npm will always know which dependencies are required for your app. If you ever need to restore your packages, you can runnpm installfrom your package directory.现在,您的软件包已列在package.json中,npm将始终知道您的应用需要哪些依赖项。 如果您需要恢复软件包,可以从软件包目录运行
npm install
When you distribute your application, we recommend adding the
node_modulesfolder to.gitignoreso that you don't clutter your repo with needless files. This also makes it easier to work with multiple platforms. If you want to keep things as similar as possible between machines, npm offers many options that enable you to fix the version numbers inpackage.json, and even more fine-grained control withnpm-shrinkwrap.json.分发应用程序时,建议将
node_modules文件夹添加到.gitignore中,以免不必要的文件使您的回购变得混乱。 这也使得在多个平台上工作变得更加容易。 如果您想使机器之间的内容尽可能地相似,npm提供了许多选项,使您可以修复package.json中的版本号,甚至可以使用npm-shrinkwrap.json进行更细粒度的控制
Publishing npm packages to the registry
Once you've created a package, publishing it to the world is only one command away!
C:\src\my-express-app> npm publish
Use npm's private modules.
TODO Add description about how to authorize the machine using
npm adduser.
Local vs. global packages
There are two types of npm packages - locally installed packages and globally installed packages. It's not an exact science, but in general...
npm软件包有两种类型:本地安装的软件包和全局安装的软件包。 这不是一门精确的科学,但总的来说...
- Locally installed packages are packages that are specific to your application
- 本地安装的软件包是特定于您的应用程序的软件包
- Globally installed packages tend to be CLI tools and the like
- 全局安装的软件包通常是CLI工具等
We went through locally installed packages above, and installing packages globally is very similar. The only difference is the -g command.
我们经历了上面的本地安装软件包,并且在全局范围安装软件包非常相似。 唯一的区别是-g命令
npm install http-server -gwill install the module globally.
The module will be installed to the path indicated by
npm bin -g.
Run
http-server .to start a basic fileserver from any directory. On running this command , the server starts and runs on the localhost.运行
http-server .以从任何目录启动基本文件服务器。 运行此命令后,服务器将启动并在本地主机上运行。
In fact the only difference when using -g is that executables are placed in a folder that is on the path. If you install without the -g option you can still access those executables in
.\node_modules\.bin. This folder is automatically added to the path when any scripts defined inpackage.jsonare run. Doing this will help avoid version clashes when a project uses skrinkwrap or otherwise specifies the version of a module different to other projects. It also avoids the need for manual install instructions for some dependencies so a single "npm install" will do.实际上,使用-g时唯一的区别是可执行文件位于路径上的文件夹中。 如果您未安装-g选项,则仍可以在. \ node_modules \ .bin中访问这些可执行文件。 当运行在package.json中定义的任何脚本时,该文件夹会自动添加到路径中。 当项目使用skrinkwrap或以其他方式指定与其他项目不同的模块版本时,这样做将有助于避免版本冲突。 它还避免了某些依赖项的手动安装说明,因此只需一个“ npm install”即可。
And much more!
Using nodemon
nodemon is a utility that will monitor for any changes in your source and automatically restart your server. Use npm to install it:
nodemon是一个实用程序,它将监视源中的任何更改并自动重新启动服务器。 使用npm进行安装:
npm install -g nodemon
After installation, you can launch your application using nodemon. For example:
nodemon app.js
After this, you don't have to restart the Node server after making changes since nodemon will automatically restart it for you. If you're developing a web application, simply refresh your browser to examine your update. Pretty handy for development!
此后,您无需在进行更改后重新启动Node服务器,因为nodemon会自动为您重新启动它。 如果要开发Web应用程序,只需刷新浏览器以检查更新。 非常方便开发
Getting Started With Node and NPM的更多相关文章
- Node.js npm 详解
一.npm简介 安装npm请阅读我之前的文章Hello Node中npm安装那一部分,不过只介绍了linux平台,如果是其它平台,有前辈写了更加详细的介绍. npm的全称:Node Package M ...
- CentOS 6.5安装Node.js, npm
CentOS上可以通过下载*.tar.gz安装包的方式自己解压缩.编译的方式安装,同时还可以采用EPEL的方式安装: Node.js and npm are available from the Fe ...
- 使用 nvm 管理不同版本的 node 与 npm
补充说明:Mac 下通过 brew install nvm 所安装的 nvm ,由于安装路径不同,无法正确启用.建议使用 brew uninstall nvm 卸载掉之后,通过本文的方案重新安装一次. ...
- Latest node.js & npm installation on Ubuntu 12.04
转自:https://rtcamp.com/tutorials/nodejs/node-js-npm-install-ubuntu/ Compiling is way to go for many b ...
- Windows环境下 Node和NPM个性安装
常拿自己的电脑常用来测试各种Bug,所以始终奋斗在XP.IE6的环境下.让我们在如此级别的环境下,开始Node之路吧~~ 在过去,Node.js一直不支持在Windows平台下原生编译,需要借助Cyg ...
- Mac环境下装node.js,npm,express
1. 下载node.js for Mac 地址: http://nodejs.org/ 直接下载 pkg的,双击安装,一路点next,很容易就搞定了. 安装完会提醒注意 node和npm的路径是 /u ...
- Mac环境下装node.js,npm,express;(包括express command not found)
1. 下载node.js for Mac 地址: http://nodejs.org/download/ 直接下载 pkg的,双击安装,一路点next,很容易就搞定了. 安装完会提醒注意 node和n ...
- Node.js npm
Node程序包管理器(NPM)提供了以下两个主要功能: 在线存储库的Node.js包/模块,可搜索 search.nodejs.org 命令行实用程序来安装Node.js的包,做版本管理和Node.j ...
- ubuntu下nvm,node以及npm的安装与使用
一:安装nvm 首先下载nvm,这里我们需要使用git,如果没有安装git,可以使用 sudo apt-get install git 来安装 git clone https://github.com ...
- node.js NPM 使用
n=NPM是一个Node包管理和分发工具,已经成为了非官方的发布Node模块(包)的标准.有了NPM,可以很快的找到特定服务要使用的包,进行下载.安装以及管理已经安装的包.npms安装: 下载npm源 ...
随机推荐
- CF1285 --- Dr. Evil Underscores
CF1285 --- Dr. Evil Underscores 题干 Today as a friendship gift, Bakry gave Badawy \(n\) integers \(a_ ...
- 【JAVA基础】08 面向对象3
1. 多态 多态polymorhic概述 事物存在的多种形态. 多态前提 要有继承关系 要有方法重写 要有父类引用指向子类对象 案例演示 代码体现多态 class Demo1_Polymorphic{ ...
- jQuery学习(三)
事件 on方法可以将一个事件绑定在jQuery对象上,当你的操作触发了这些事件时,便会调用你所绑定的函数. 例如,给某个超链接绑定点击事件. <head> <meta http-eq ...
- php beast windows编译教程
git clone https://github.com/Microsoft/php-sdk-binary-tools.git c:\php-sdk cd c:\php-sdk git checkou ...
- Leetcode---Solutions&Notes
Leetcode已经成为面试必备技能之一,为了紧随潮流,也模仿大佬们刷刷题. 1.采用"龟系"做法,每道题尽量做到时间复杂度和空间复杂度的较优水平: 2.每道题的Solution先 ...
- The Preliminary Contest for ICPC Asia Xuzhou 2019 徐州网络赛 C Buy Watermelon
The hot summer came so quickly that Xiaoming and Xiaohong decided to buy a big and sweet watermelon. ...
- java的Timer定时器任务
在项目开发中,经常会遇到需要实现一些定时操作的任务,写过很多遍了,然而每次写的时候,总是会对一些细节有所遗忘,后来想想可能是没有总结的缘故,所以今天小编就打算总结一下可能会被遗忘的小点: 1. pub ...
- 学习Vue第一节,Vue的模式与写法格式
引用Vue <script src="js/vue-2.4.0.js" type="text/javascript" charset="utf- ...
- C语言程序设计实验报告(第一次实验)
C程序设计实验报告 实验项目:C语言程序设计教程实验1.3.2:1.3.3:1.3.4:2.3.1:2.3.2 姓名:赖瑾 实验地点:家 实验时间:2020.2.25 目录 C程序设计实验报告 一.实 ...
- Hadoop入门学习笔记-第二天 (HDFS:NodeName高可用集群配置)
说明:hdfs:nn单点故障,压力过大,内存受限,扩展受阻.hdfs ha :主备切换方式解决单点故障hdfs Federation联邦:解决鸭梨过大.支持水平扩展,每个nn分管一部分目录,所有nn共 ...