Skip to content

nodejs概述

TIP

nodejs做一个简单的服务端是可以的,但是不适合用在中大型项目中,因为nodejs是单线程的,所以不能处理大量请求,但是nodejs适合做中大型项目中的中间层,比如:接口层、数据聚合层、数据缓存层等。做些简单的数据处理,比如:数据校验、数据转换等还是可以的。

nodejs下载文档:https://www.nodejs.com.cn/

nodejs项目结构

gitee

bash
git clone https://gitee.com/wang-luoluo/node-js.git
git clone https://gitee.com/wang-luoluo/node-js.git
bash
git clone https://gitee.com/wang-luoluo/node-ts.git
git clone https://gitee.com/wang-luoluo/node-ts.git

github

bash
git clone https://github.com/luoluo857/node-js.git
git clone https://github.com/luoluo857/node-js.git
bash
git clone https://github.com/luoluo857/node-ts.git
git clone https://github.com/luoluo857/node-ts.git

程序员小洛文档