Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
jscodeshift-transport
Advanced tools
jscodeshift transform and API for finding and replacing module names in import/require statements
A great jscodeshift transform and API for finding and replacing module names in
import/require statements. I wrote this because other transforms I found seemed
not as convenient or comprehensive. This handles both relative imports/requires
and imports/requires from node_modules
. For instance, it's easy to replace a
component from a library with your own wrapper in a local file:
jscodeshift -t ~/jscodeshift-transport ./src \
--find=@material-ui/core/Button \
--replace=./src/components/Button
The correct relative path will be used in each replacement, relative to the file
being processed. It will work just as well if you swap the --find
and
--replace
values, restoring the original module names.
require
s it's not magic enough to handlerequire
is redeclared, e.g. requires inside a
function (require) { ... }
will be ignored, if you're doing that,
please stahpRun index.js
in this repo with jscodeshift
and pass two options to it:
--find=<VALUE>
: The module name to find, just like you would use in an
import
or require
statement, relative to the current working directory:
Paths to local files must be absolute or begin with ../ or ./; otherwise,
it is assumed you meant an import from node_modules
.--replace=<VALUE>
: The module name to replace it with, just like you would
use in an import
or require
statement, relative to the current working directory:
Paths to local files must be absolute or begin with ../ or ./; otherwise,
it is assumed you meant an import from node_modules
.It's also possible to do regex replacement on module names:
--regex=1
: Treat --find
as a RegExp
and find module names that match it,
and regex replace --find
with --replace
on the module names--flags=<FLAGS>
: Regular expression flags to use for --regex
npm i -g jscodeshift
cd ~
git clone https://github.com/jcoreio/jscodeshift-transport
cd ~/jscodeshift-transport
npm i
cd ~/path/to/your/project
jscodeshift -t ~/jscodeshift-transport ./src \
--find=@material-ui/core/Button \
--replace=./src/components/Button
jscodeshift-transport
exports a replaceModuleNames
function you can use in your
own jscodeshift transforms.
const { replaceModuleNames } = require('jscodeshift-transport')
It accepts the following arguments:
file: string
The path to the file being transformed
root: Collection
The root jscodeshift Collection
from the source code of file
. You must use
the babylon
parser (e.g. require('jscodeshift').withParser('babylon')(code)
)
find: string | RegExp | (moduleName: string) => boolean
The module name to find in import
/require
statements.
Paths starting with ./
or ../
are treated as relative
to the current working directory, not file
. If a RegExp
is given, it
will find all module names that match the RegExp
. If a function is given, it
will find all module names for which find(moduleName)
is truthy.
replace: string | (moduleName: string, info: Info) => ?string
The module name to replace find
with in import
/require
statements, or a
function that computes the replacement. Paths starting with ./
or ../
are treated as relative to the current working directory, not file
. If
you pass a function, it is called with the moduleName
and an info
object
with the following properties, and may return a string
replacement module name.
file: string
: The file
you passed to replaceModuleNames
.path: NodePath
: The babel
NodePath
for the import
or require
statement.If find
is a RegExp
, the new module name will be computed as
moduleName.replace(find, replace).
FAQs
jscodeshift transform and API for finding and replacing module names in import/require statements
The npm package jscodeshift-transport receives a total of 2 weekly downloads. As such, jscodeshift-transport popularity was classified as not popular.
We found that jscodeshift-transport 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.