
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
eslint-plugin-react-extras
Advanced tools
This ESLint plugin provides additional rules for projects using React and TypeScript, aiming to enhance code quality and maintainability by enforcing best practices and stylistic conventions.
eslint-plugin-react-extras
introduces extra linting rules for React and TypeScript projects to catch common mistakes and enforce best practices. This package focuses on improving the developer experience by providing clear and concise feedback on potential issues in your React codebase.
You'll need to have ESLint installed. If you haven't installed ESLint yet, you can do it by running:
npm install --save-dev eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser eslint eslint-plugin-react-extras
Add eslint-plugin-react-extras
to the plugins section of your .eslintrc
configuration file. Then, configure the rules you want to use under the rules section.
{
"plugins": ["react-extras"],
"parser": "@typescript-eslint/parser",
"rules": {
"react-extras/rule-name": "error"
}
}
disallow-React-componentWithProps
Examples 🚫 Example of incorrect code for this rule:
type MyComponentProps = React.PropsWithChildren<{}>;
✅ Example of correct code for this rule:
type MyComponentProps = {
children: React.ReactNode
};
type MyComponentProps = React.PropsWithChildren;
FAQs
Adds extra rules for React and Typescript
The npm package eslint-plugin-react-extras receives a total of 75 weekly downloads. As such, eslint-plugin-react-extras popularity was classified as not popular.
We found that eslint-plugin-react-extras 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.