@0ti.me/en-path 中文文档教程

发布于 4年前 浏览 22 项目主页 更新于 3年前

en-path

srelative

// This fails because the path ends up being 'module.js' which require will interpret as an npm dependency instead of a file path
const path = require('path');
const module = require(path.relative(__dirname, 'module.js'));

一个增强的路径模块,它添加了一个相对函数,确保所有路径都可以被要求使用。 你可以在这里看到它的实际效果:

const enPath = require('en-path');
const module = require(enPath.srelative(__dirname, 'module.js'));

en-path

srelative

// This fails because the path ends up being 'module.js' which require will interpret as an npm dependency instead of a file path
const path = require('path');
const module = require(path.relative(__dirname, 'module.js'));

An enhanced path module that adds a srelative function that ensures all paths are usable by require. You can see it in action here:

const enPath = require('en-path');
const module = require(enPath.srelative(__dirname, 'module.js'));
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文