Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
smart-require
Advanced tools
Avoid ugly require('../../../some-file')
using absolute paths, from
the root of your project.
This package follows the well-known UNIX convention where /
is the
root.
For example, in this source tree:
.
├── index.js
├── image
│ ├── gif.js
│ ├── jpg.js
│ └── png.js
└── video
└── mp4.js
…if you’re in image/gif.js
, this package allows you to require
video/mp4.js
like this:
const video = require('/video/mp4.js')
…instead of:
const video = require('../video/mp4.js')
Of course, it prohibits you to require anything from the root of your
system (but why doing so?). Since the behavior of require()
changes,
this is not really safe, even if I never had any problem with it. Use
at your own risk.
yarn add smart-require
…or:
npm install --save smart-require
Then, you just have to indicate your project root before any call to
the customized require
, usually at the beginning of your
entrypoint. If you are in index.js
in the example above, you can
write:
require('smart-require')(__dirname)
…or if your entrypoint is in image/jpeg.js
and you want the same
behavior:
const root = require('path').join(__dirname, '..')
require('smart-require')(root)
require-root, nice but different.
FAQs
A better require() for large projects
We found that smart-require 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.