- Published on
node.js 相关概念备忘
- Authors
- Name
从工作中对 js 生态的接触还是比较多的。
React-Navite 跨平台应用其中是应用了 React 的相关技术
我们经常看到一些比较早期的网页:js+css+html 技术。
比较出名的两个技术框架是 React 和 Vue ,他们都是基于typescript 编写的。
什么是 node.js
Node.js® 是一个免费、开源、跨平台的 JavaScript 运行时环境, 它让开发人员能够创建服务器 Web 应用、命令行工具和脚本。 https://nodejs.org/zh-cn/learn/getting-started/introduction-to-nodejs Node.js runs the V8 JavaScript engine, the core of Google Chrome, outside of the browser. This allows Node.js to be very performant.
Node.js 在浏览器之外运行 V8 JavaScript 引擎(Google Chrome 浏览器的核心)。这使得 Node.js 的性能非常出色。
什么是 V8 引擎
V8 is the name of the JavaScript engine that powers Google Chrome. It's the thing that takes our JavaScript and executes it while browsing with Chrome. V8 is the JavaScript engine i.e. it parses and executes JavaScript code. The DOM, and the other Web Platform APIs (they all makeup runtime environment) are provided by the browser. V8 是支持 Google Chrome 浏览器的 JavaScript 引擎的名称。在使用 Chrome 浏览器时,就是它在执行我们的 JavaScript。 V8 是 JavaScript 引擎,即解析并执行 JavaScript 代码。DOM 和其他网络平台 API(它们都构成了运行时环境)由浏览器提供。
你可以通过 Node.js 的以下命令查看使用的 V8 引擎版本:
node -p process.versions.v8
//在我自己的mac上结果如下:
11.3.244.8-node.17
在 mac 电脑上,我们只要安装了 node.js , 那么就不需要我们单独安装 V8 引擎了,因为V8 引擎已经嵌入在 Node.js 二进制文件中,无需单独安装。
什么是 npm
Node.js Packager Manager 有一个网站,可以管理用户分享的 js packages,查找想要的使用的 packages。 同时npm 还提供 CLI 为不同的平台。 也维护一个注册中心 registry,维护这些共享 packages
npm is the world's largest software registry. Open source developers from every continent use npm to share and borrow packages, and many organizations use npm to manage private development as well.
npm consists of three distinct components:
the website the Command Line Interface (CLI) the registry
Use the website to discover packages, set up profiles, and manage other aspects of your npm experience. For example, you can set up organizations to manage access to public or private packages.
The CLI runs from a terminal, and is how most developers interact with npm.
The registry is a large public database of JavaScript software and the meta-information surrounding it.
npm 常用命令
npm run
其实是 npm run-script 的缩写,后面接 package.json 文件中的 scripts 下的命令
例如我们这个 blog
"scripts": {
"start": "next dev",
"dev": "cross-env INIT_CWD=$PWD next dev",
"build": "cross-env INIT_CWD=$PWD next build && cross-env NODE_OPTIONS='--experimental-json-modules' node ./scripts/postbuild.mjs",
"serve": "next start",
"analyze": "cross-env ANALYZE=true next build",
"lint": "next lint --fix --dir pages --dir app --dir components --dir lib --dir layouts --dir scripts"
},
我们可以用 npm run dev 这个命令在本地跑一个服务
npm init
在当前文件夹中初始化 node.js 项目,如果没有 package.json 文件,会让我们选择一系列操作,会新建一个 package.json,如下所示:
{
"name": "nodejs-starter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
npm install
会从 npm 的 registry 中拉取我们定义在 package.json 中的依赖库 还有一些其它的命令
npm install -D: npm install --save-dev 会将库安装在 dev 环境中,对应 devDependencies 下
"devDependencies": {
"@vuepress/bundler-webpack": "^2.0.0-rc.7",
"@vuepress/theme-default": "^2.0.0-rc.11",
"vue": "^3.4.0",
"vuepress": "^2.0.0-rc.7"
}
npm install 会安装在生产环境中
npm install -g 会全局安装
npm update
会更新依赖
什么是 nvm
Node Version Manager
node.js推荐的用来管理 node.js 版本的工具
什么是 npx
npx 是一个工具,用于直接运行本地或远程 npm 包的可执行命令,无需全局安装,从而简化临时工具的使用。
什么是 yarn
https://yarnpkg.com/getting-started Yarn is an established open-source package manager used to manage dependencies in JavaScript projects. It assists with the process of installing, updating, configuring, and removing packages dependencies, eventually helping you reach your objectives faster with fewer distractions.
Its areas of focus are speed, correctness, security, and developer experience, which we improve along every axis by leveraging a suite of innovative features such as workspaces, offline caching, parallel installs, hardened mode, interactive commands, and more.
Given its robust features and stellar track record, Yarn proves to be an indispensable asset to the JavaScript ecosystem, driving efficiency, security, and positive developer experience in projects of any size.
Yarn 是一款成熟的开源软件包管理器,用于管理 JavaScript 项目中的依赖关系。它可协助完成安装、更新、配置和删除依赖包的过程,最终帮助您更快地实现目标,减少干扰。
我们利用一系列创新功能,如工作空间、离线缓存、并行安装、加固模式、交互式命令等,在每一个轴线上都进行了改进。
鉴于其强大的功能和出色的记录,Yarn 被证明是 JavaScript 生态系统中不可或缺的资产,它能在任何规模的项目中提高效率、安全性和积极的开发人员体验。