New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

absolute-require

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

absolute-require

Absolute "requires"

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

NodeJS module for enabling absolute requires. Handy when you want to avoid messy require statements like this:

const foo = require('../../../api/users/model/method')
const bar = require('../../helpers/xhr/facebook')
const baz = require('../../../../../../config/secrets')

And use this instead:

const foo = __require('api/users/model/method')
const bar = __require('helpers/xhr/facebook')
const baz = __require('config/secrets')

For Webpack/Babel users, do not use this! :) Webpack has its own facilities for accomplishing this.

Installation

npm install --save absolute-require

Usage

require it at the top of your entry point file, and pass it __dirname. Optionally, you can pass it an alias to use (default: "__require")

require('absolute-require')(__dirname, '__require')

Note: you don't need to assign it to any variables. Just require it all its lonesome like that. In the example below, if the entry point file (index.js) is in src so all of your __require lookups will start there.

.
├── package.json
├── src
|   ├── index.js   <––– "require" placed here
|   ├── api
|   |    ├── users
|   |    ├── posts
|   |    ├── tags
|   |    └── comments
|   ├── models
|   ├── controllers
|   └── config
├── helpers
|   ├── xhr
|   └── authentication
└── config
    ├── secrets
    └── token

You can always revert to normal require() statements when you want. In fact, you'll still need to use the require() syntax for stuff in node_modules directory.

FAQs

Package last updated on 05 May 2019

Did you know?

Socket

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.

Install

Related posts