You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Default User f8704fe682 初始化后端代码,包含Express服务、数据库配置和API接口 2 months ago
..
js.js 初始化后端代码,包含Express服务、数据库配置和API接口 2 months ago
json.js 初始化后端代码,包含Express服务、数据库配置和API接口 2 months ago
license 初始化后端代码,包含Express服务、数据库配置和API接口 2 months ago
package.json 初始化后端代码,包含Express服务、数据库配置和API接口 2 months ago
readme.md 初始化后端代码,包含Express服务、数据库配置和API接口 2 months ago

readme.md

default-require-extensions

Node's default require extensions as a separate module

Handy for require extension authors that want reliable access to the default extension implementations.

By the time your extension is loaded, the default extension may have already been replaced. This provides extensions functionally identical to the default ones, which you know you can access reliably, no matter what extensions have been installed previously.

This package is not compatible with ESM.

Install

npm install default-require-extensions

Usage

const js = require('default-require-extensions/js');
const json = require('default-require-extensions/json');

require.extensions['.js'] = js;
require.extensions['.js'] = json;

Note: You would never actually do the above. Use these in your custom require extensions instead.