当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js require(id)用法及代码示例


require(id)

添加于:v0.1.13

参数

用于导入模块、JSON 和本地文件。模块可以从 node_modules 导入。可以使用相对路径(例如 ././foo./bar/baz../foo )导入本地模块和 JSON 文件,这些路径将针对 __dirname 命名的目录(如果已定义)或当前工作目录。 POSIX 风格的相对路径以独立于操作系统的方式解析,这意味着上面的示例将在 Windows 上以与在 Unix 系统上相同的方式工作。

// Importing a local module with a path relative to the `__dirname` or current
// working directory. (On Windows, this would resolve to .\path\myLocalModule.)
const myLocalModule = require('./path/myLocalModule');

// Importing a JSON file:
const jsonData = require('./path/filename.json');

// Importing a module from node_modules or Node.js built-in module:
const crypto = require('node:crypto');

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 require(id)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。