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.
babel-plugin-preeval-refresh-reg
Advanced tools
A babel plugin to make wyw-in-js works with React refresh
This is the example React code that goes through wyw-in-js
preeval stage:
const Divider = /*#__PURE__*/ _s(
React.forwardRef(
(_c = _s(
function Divider(inProps, ref) {
_s();
// ...
return /*#__PURE__*/ _jsx(
DividerRoot,
_extends(
{
as: component,
className: clsx(classes.root, className),
role: role,
ref: ref,
ownerState: ownerState,
},
other,
{
children: children
? /*#__PURE__*/ _jsx(DividerWrapper, {
className: classes.wrapper,
ownerState: ownerState,
children: children,
})
: null,
}
)
);
},
'526RDEpO1CGEADq5vnCvoNyCejQ=',
false,
function() {
return [useThemeProps, useUtilityClasses];
}
))
),
'526RDEpO1CGEADq5vnCvoNyCejQ=',
false,
function() {
return [useThemeProps, useUtilityClasses];
}
);
_c1 = Divider;
/**
* The following flag is used to ensure that this component isn't tabbable i.e.
* does not get highlight/focus inside of MUI List.
*/ Divider.muiSkipListHighlight = true;
export default Divider;
var _c, _c1;
$RefreshReg$(_c, 'Divider$React.forwardRef');
$RefreshReg$(_c1, 'Divider');
The $RefreshReg$
is injected by React Refresh from a framework like Next.js or Vite. In the preeval phase, wyw-in-js
will remove the global $RefreshReg$
but there is a bug in removing the _c
(I am not sure is it the bug in wyw-in-js
or babel
) so the code that go through evaluation looks like this:
const Divider = /*#__PURE__*/ _s(
React.forwardRef(
(_c = _s(
function Divider(inProps, ref) {
_s();
// ...
},
'526RDEpO1CGEADq5vnCvoNyCejQ=',
false,
function() {
return [useThemeProps, useUtilityClasses];
}
))
),
'526RDEpO1CGEADq5vnCvoNyCejQ=',
false,
function() {
return [useThemeProps, useUtilityClasses];
}
);
/**
* The following flag is used to ensure that this component isn't tabbable i.e.
* does not get highlight/focus inside of MUI List.
*/ Divider.muiSkipListHighlight = true;
export default Divider;
Causing the error _c is not defined
.
This plugin will replace the _c = _s(...)
with _s(...)
directly so that there is no use of the variable to make the evalution works.
npm install babel-plugin-preeval-refresh-reg
// .babelrc
{
"plugins": ["babel-plugin-preeval-refresh-reg"]
}
FAQs
A babel plugin to make wyw-in-js works with React refresh
We found that babel-plugin-preeval-refresh-reg demonstrated a healthy version release cadence and project activity because the last version was released less than 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.