import-locals
💿 Installation
npm i import-locals
📖 Usage
import locals from "import-locals";
const locals = require("import-locals");
locals.export("request/lib/cookies", "RequestJar");
locals.export("request/lib/cookies", "CookieJar");
locals.export("request/lib/cookies", "CookieJar", "LocalJar");
import { RequestJar, CookieJar, LocalJar } from "request/lib/cookies";
const { RequestJar, CookieJar, LocalJar } = require("request/lib/cookies");
🔨 Advanced usage
global.locals.separator = "\n\n";
global.locals.global.locals.unpatch();
global.locals.compile.call(module, content, filename);
🔬 LocalPatcher
Methods
export
export(request: String, variable: String, name: String = variable);
-
request
- module name or path
-
variable
- name of variable (or function, class, etc) to export
-
name
- name to use for export, by default the same as variable
patcher.export("request/lib/cookies", "RequestJar");
patcher.export("request/lib/cookies", "CookieJar", "LocalJar");
import { RequestJar, LocalJar } from "request/lib/cookies";
unexport
unexport(request: String, variable: String = null, name: String = variable);
-
request
- module name or path
-
variable
- if null
unexports all variables
-
name
- name used for export, by default the same as variable
patcher.unexport("request/lib/cookies", "RequestJar");
patcher.unexport("request/lib/cookies", "CookieJar", "LocalJar");
patcher.unexport("request/lib/cookies");
❓ How does it work?
This module adds exports[name]=variable
to requested source file, so you can require it
var foo = ["bar"];
exports["foo"] = foo;
📝 License
Released under MIT license