码迷,mamicode.com
首页 > 其他好文 > 详细

node

时间:2020-06-23 19:46:03      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:size   dex   运行   意思   require   span   color   const   终端   

1. node.js的安装

2. 服务端与客户端

意思就是js文件是在客户端环境运行(在浏览器中打开)还是在服务端环境(直接终端运行命令 node index.js)运行

3.1 nodejs原生服务器

const http = require("http")
const server = http.createServer((req, res) => {
    res.write("使用node启动一个服务器")
    res.end()
})

server.listen(3000)

 

node

标签:size   dex   运行   意思   require   span   color   const   终端   

原文地址:https://www.cnblogs.com/shun1015/p/13183766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!