
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
requirefrom
Advanced tools
Require from a directory relative to node_modules, flattening your require paths.
Require from a directory relative to node_modules, flattening your require paths. Using requireFrom you won't have to manage complex relative paths between each component of your node app.
Alternatively check out wavy or link-local if symlinks might be a better solution for your project.
Simple usage anywhere in your node app:
let lib = require('requirefrom')('lib');
let myModule = lib('myModule');
For more complex usage, let's assume this example directory structure:
node_modules/
lib/
components/
framework/
views/
login.js
signup.js
models/
user/
index.js
utlity/
normalize/
user.js
package.json
Any file in this project could then include these files with the following code:
let requireFrom = require('requirefrom');
let views = requireFrom('lib/components/framework/views/');
let models = requireFrom('lib/components/framework/models/');
let utility = requireFrom('lib/utility/');
let loginForm = views('login.js');
let signupForm = views('signup.js');
let userModel = models('user');
let normalizeUser = utility('normalize/user.js');
Without requireFrom, each file would need to maintain paths relative each other file, for example:
let loginForm = require('../../framework/views/login.js');
let signupForm = require('../../framework/views/signup.js');
let userModel = require('../../framework/models/user');
let normalizeUser = require('../../../utlity/normalize/user.js');
There hasn't been a conlusive method to prevent relative path complexity. You can read about them here. Each method either pollutes global, damages portablity of your app, or might confuse someone unfamiliar with your technique. I hadn't seen anyone considering requireFrom's method of using a dependency to find the relative path of your project.
Install using npm. Add "requirefrom" to your dependencies in package.json before running npm install, or do that automatically with npm install --save requirefrom.
FAQs
Require from a directory relative to node_modules, flattening your require paths.
The npm package requirefrom receives a total of 388 weekly downloads. As such, requirefrom popularity was classified as not popular.
We found that requirefrom demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.