学习node记录整理

1、查看版本 node --version ||| npm -v

2、安装模块 npm install express -g 全局安装

npm install express 局部安装

3、使用模块

var express = require('express');

var http = require('http');

 

http.createServer(function (request, response) {

// 发送 HTTP 头部

// HTTP 状态值: 200 : OK

// 内容类型: text/plain

response.writeHead(200, {'Content-Type': 'text/plain'});

// 发送响应数据 "Hello World"

response.end('Hello World\n');

}).listen(8888);

console.log('Server running at http://127.0.0.1:8888/');

 

4、卸载模块 npm uninstall express

5、更新模块 npm update express

6、node 终端交互 node启动

a = 1; b=a+1;

表达式

变量

Ctrl + C 退出终端交互

7、自定义模块

//hello.js function Hello() {     var name;     this.setName = function(thyName) {         name = thyName;     };     this.sayHello = function() {         console.log('Hello ' + name);     }; }; module.exports = Hello;

8、多模块

//SheHis.js

function She() {};

function His() {};

module.exports = {His,She};

 

//main3.js

var HH = require('./SheHis');

She = new HH.She();

She.setName('BYVoidShe');

She.sayHello();

His = new HH.His();

His.setName('BYVoidHis');

His.sayHello();

 

8、创建 http

9、获取参数

10、express框架

11、mysql

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

somdip

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值