
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
eslint-plugin-react-web-api
Advanced tools
ESLint React's ESLint plugin for interacting with Web APIs
ESLint React's ESLint plugin for React to interact with Web APIs.
# npm
npm install --save-dev eslint-plugin-react-web-api
Add the plugin to your eslint.config.js
:
// @ts-check
import js from "@eslint/js";
import reactWebAPI from "eslint-plugin-react-web-api";
export default [
js.configs.recommended,
{
files: ["**/*.{ts,tsx}"],
plugins: [
"react-web-api": reactWebAPI,
rules: {
// react-web-api recommended rules
"react-web-api/no-leaked-timeout": "error",
"react-web-api/no-leaked-interval": "error",
"react-web-api/no-leaked-event-listener": "error",
"react-web-api/no-leaked-resize-observer": "error",
}
],
},
];
Rule | Description | 💼 | 💭 | |
---|---|---|---|---|
no-leaked-timeout | Prevents leaked setTimeout | ✔️ | ||
no-leaked-interval | Prevents leaked setInterval | ✔️ | ||
no-leaked-idle-callback | Prevents leaked requestIdleCallback | ✔️ | 🚧 | |
no-leaked-animation-frame | Prevents leaked requestAnimationFrame | ✔️ | 🚧 | |
no-leaked-event-source | Prevents leaked EventSource | ✔️ | 🚧 | |
no-leaked-event-listener | Prevents leaked addEventListener | ✔️ | ||
no-leaked-resize-observer | Prevents leaked ResizeObserver | ✔️ | ||
no-leaked-intersection-observer | Prevents leaked IntersectionObserver | ✔️ | 🚧 | |
no-leaked-mutation-observer | Prevents leaked MutationObserver | ✔️ | 🚧 | |
no-leaked-performance-observer | Prevents leaked PerformanceObserver | ✔️ | 🚧 | |
no-leaked-websocket | Prevents leaked WebSocket | ✔️ | 🚧 | |
no-leaked-broadcast-channel | Prevents leaked BroadcastChannel | ✔️ | 🚧 | |
no-leaked-geolocation | Prevents leaked Geolocation.watchPosition() | ✔️ | 🚧 | |
no-leaked-absolute-orientation-sensor | Prevents leaked AbsoluteOrientationSensor | ✔️ | 🚧 | |
no-leaked-relative-accelerometer | Prevents leaked Accelerometer | ✔️ | 🚧 | |
no-leaked-ambient-light-sensor | Prevents leaked AmbientLightSensor | ✔️ | 🚧 | |
no-leaked-gravity-sensor | Prevents leaked GravitySensor | ✔️ | 🚧 | |
no-leaked-gyroscope | Prevents leaked Gyroscope | ✔️ | 🚧 | |
no-leaked-linear-acceleration-sensor | Prevents leaked LinearAccelerationSensor | ✔️ | 🚧 | |
no-leaked-magnetometer | Prevents leaked Magnetometer | ✔️ | 🚧 | |
no-leaked-orientation-sensor | Prevents leaked OrientationSensor | ✔️ | 🚧 |
FAQs
ESLint React's ESLint plugin for interacting with Web APIs
The npm package eslint-plugin-react-web-api receives a total of 242,672 weekly downloads. As such, eslint-plugin-react-web-api popularity was classified as popular.
We found that eslint-plugin-react-web-api 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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.