1. derequire
remove requires
derequire
Package: derequire
Created by: calvinmetcalf
Last modified: Wed, 15 Jun 2022 01:29:35 GMT
Version: 2.1.1
License: MIT
Downloads: 114,170
Repository: https://github.com/calvinmetcalf/derequire

Install

npm install derequire
yarn add derequire

derequire Build Status

 npm install derequire

derequire can be used either as a JavaScript API or as a CLI.

JavaScript API

 var derequire = require('derequire');
var transformedCode = derequire(code, /*tokenTo=*/'_dereq_', /*tokenFrom=*/'require');

derequire takes a string of code and replaces all instances of the tokenFrom identifier (defaults to 'require') and replaces them with the tokenTo identifier (defaults to '_dereq_') but only if they are functional arguments or variable declarations and subsequent uses of said argument, then returnes the code.

For multiple renames at the same time, the following syntax is accepted:

 derequire(code, [
  {
    from: 'require',
    to: '_dereq_'
  },
  {
    from: 'define',
    to: '_defi_'
  }
]);

Note: In order to avoid quite a few headaches the token you're changing from and the token you're changing to need to be the same length.

Command-line API

There's a CLI that accepts a file path as an argument (absolute or relative to CWD) or reads from stdin if file path is - or omitted, and accepts -f|--from and -t|--to options that correspond to the API tokenFrom and tokenTo options. Examples:

 derequire input.js > output.js
derequire < input.js > output.js
browserify input.js | derequire > output.js
browserify input.js | derequire - > output.js
derequire input.js --from require --to _gonzo_ > output.js

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code