node.js
文章平均质量分 87
wendZzz
若有需要请联系微信号:coolbigflower
微信公众号:前端一起学
展开
-
基于node.js的cli工具,保姆级实现教程
基于nodejs的cli工具,基于此实现思路可以做很多平日里重复工作的优化。原创 2022-08-01 22:13:23 · 826 阅读 · 0 评论 -
node.js函数调用
首先创建web服务,官网上有现成的demo,建议还是自己了解写一遍。新建一个stratServer.js文件,//require方法导入nodejs的一个对象httpvar http = require("http");//http新建一个web服务,其中function包含两个对象,request是浏览器向服务端发送请求的对象,response是服务端向浏览器写回的对象http.cr...原创 2018-11-30 10:40:09 · 745 阅读 · 0 评论 -
《Node入门》翻译-前言
The Node Beginner BookAboutThe aim of this document is to get you started with developing applications with Node.js, teaching you everything you need to know about "advanced" JavaScript along the ...翻译 2019-02-13 12:09:27 · 396 阅读 · 1 评论 -
《The Node Beginner Book》- Node.js环境和浏览器环境下的JS
JavaScript and YouBefore we talk about all the technical stuff, let's take a moment and talk about you and your relationship with JavaScript. This chapter is here to allow you to estimate if reading...翻译 2019-02-13 14:30:30 · 393 阅读 · 0 评论 -
《Node入门》- 一个完整的基于Node.js的web应用构建详解(一)
The use casesLet's keep it simple, but realistic:我们来把目标设定得简单点,不过也要够实际才行:The user should be able to use our application with a web browser用户应能够通过浏览器使用到我们的应用。The user should see a welcome page w...翻译 2019-02-14 11:24:30 · 486 阅读 · 0 评论 -
《Node入门》- 一个完整的基于Node.js的web应用构建详解(二)
How our server handles requests Ok, let’s quickly analyze the rest of our server code, that is, the body of our callback function onRequest().好的,让我们来快速分析一下服务器代码的剩余部分,也就是回调函数onRequest()的主体部分。When ...翻译 2019-02-14 14:54:04 · 253 阅读 · 0 评论