node基础

作者: X了个code | 来源:发表于2018-07-20 16:04 被阅读5次

http & url

const http = require('http');
const url = require('url');
http.createServer((req, res) => {
    res.writeHead(200, {'Content-Type': 'text/html; charset=utf-8' });
    console.log(req.url);
    console.log(url.parse(req.url,true));

    res.end('哈哈');
}).listen(8080);

包管理

npm init

安装包

eg :
npm i supervior --save // 加载模块
npm i supervior --save-dev // 加载模块、测试、文档框架

1、使用 npm install node_module –save 自动更新 dependencies 字段值;
2、使用 npm install node_module –save 自动更新 dependencies 字段值;

版本号相关知识

如:

'express':'^2.1.1' // 表示第一位不变,后面两位取最新的
'express':'~2.1.1' // ~表示前两位不变,最后一个取最新 
'express':'*2.1.1' // *表示全部取最新

相关文章

  • Vue学习第一天

    基础知识 node 安装 Node(傻瓜式安装) npm基础 npm 之于 Node.js ,就像 pip 之于 ...

  • 前端Node.js 基础

    一 .Node.js 基础 目录 Node开发概述Node运行环境搭建Node.js快速入门 1. Node开发概...

  • webpack

    基于node环境,必须确保node已经安装好?node -vnpm -v webpack基础入门官网: http:...

  • HashMap 源码理解

    基础 Node定义 table hash表,Node数组。 size: hash表中Node节点总数,与hash...

  • 01-Node 基础使用

    Node 基础使用Node 介绍Node 模块化开发模块成员的导出模块成员的导入Node 系统模块 path 和 ...

  • Node-RED编程基础

    Node-RED编程基础 【Node-RED与IoT开发交流】785381620 ,欢迎加入! Node-RED ...

  • node基础

    http & url 包管理 npm init 安装包 1、使用 npm install node_module ...

  • Node基础

    什么是Nodejs Nodejs是c++编写的,采用Chrome浏览器V8引擎,本质上是JavaScript运行环...

  • node基础

    一.命令行窗口 1.1 打开命令行窗口(也称命令行,终端,shell) 开始菜单-->运行-->cmd win+r...

  • Node基础

    Node基础 为什么学习Node? IO优势对于文件读写,Node采用的是非阻塞IO传统IO在读写文件的时候CPU...

网友评论

    本文标题:node基础

    本文链接:https://www.haomeiwen.com/subject/nqrqmftx.html