Files
ClassContent/历届学生/韩一伟/每天课程/2021-08-10/笔记.txt
2024-09-27 02:06:13 +08:00

53 lines
683 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Node.js
作用:写特效
写功能
运行在前端(后端)浏览器上(服务器上)的脚本语言
Node.js 不是框架,也不是新的语言
只是一个运行环境而已
c++ 帮你js和系统进行交互
v8 引擎 运行js的
js
|
nodejs
|
c++
|
系统
npm: Node.js 自带的包(插件)管理工具
npm installi 插件名
npm i 初始化项目
npm init
install 插件分为三种环境
安装到项目中
开发阶段 devDependencies
npm i --save-dev-D 插件名
正式阶段 dependencies
npm i --save-S 插件名
安装到系统全局
npm i -g 插件名
npm run 命令名字
npm start
Go
deno
Rust
TypeScript
爬虫