![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
redux-raven-middleware
Advanced tools
Redux middleware for sending error reports to Sentry through raven-js.
Redux middleware for sending error reports to Sentry through raven-js.
Will automatically send an error report upon encountering a Javascript error on dispatching any action. redux-raven-middleware will pass in the error as well as extra information such as the action that caused the error and the entire Redux application state.
Creates a Raven Middleware.
sentryDSN
-- string representing your Sentry instance.sentryConfig
-- object that will be passed into Raven.config.middlewareOptions
-- object to customize the middleware:actionTransformer
-- transform the action before sending to SentrystateTransformer
-- transform the state before sending to Sentrylogger
-- log function to use instead of console.error
import {applyMiddleware, createStore} from 'redux';
import RavenMiddleware from 'redux-raven-middleware';
const createStoreWithMiddleware = applyMiddleware(
RavenMiddleware('my-sentry-dsn')
)(createStore);
FAQs
Redux middleware for sending error reports to Sentry through raven-js.
The npm package redux-raven-middleware receives a total of 12 weekly downloads. As such, redux-raven-middleware popularity was classified as not popular.
We found that redux-raven-middleware 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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.