nodejs 系列摘要1

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js' package ecosystem, npm, is the largest ecosystem of open source libraries in the world.
Node.js 是一个基于 Chrome V8 引擎的 JavaScript 运行环境。
Node.js 使用了一个事件驱动、非阻塞式 I/O 的模型,使其轻量又高效。
Node.js 的包管理器 npm,是全球最大的开源库生态系统。

nodejs 是什么

  • javascript 的运行时环境
  • 事件驱动
  • 非阻塞 I/O

一个 javascript 运行的环境。
用 javascript 编写的程序可以运行在这个环境里。
编写的程序可以调用标准库。
标准库的具体实现被封装隐藏。

nodejs 系列摘要1_第1张图片
javascript1.png

有什么用

nodejs 标准库 具备文件系统,Web模块......等等

nodejs 系列摘要1_第2张图片
node具体使用.png

  • 前端流程化开发的基础环境
    实现各类构建工具
  • web服务端开发
    .....其他系列

npm 是什么

  • 包管理器

安装

nodejs 系列摘要1_第3张图片
安装.png

安装包直装。

官方参考文档

nodejs 官方文档
nodejs 中文文档
npm 官方文档
其他参考
如何正确的学习Node.js ——狼叔

你可能感兴趣的:(nodejs 系列摘要1)