![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@react-native/dev-middleware
Advanced tools
Dev server middleware supporting core React Native development features. This package is preconfigured in all React Native projects.
Middleware can be attached to a dev server (e.g. Metro) using the createDevMiddleware
API.
import { createDevMiddleware } from '@react-native/dev-middleware';
function myDevServerImpl(args) {
...
const {middleware, websocketEndpoints} = createDevMiddleware({
projectRoot: metroConfig.projectRoot,
serverBaseUrl: `http://${args.host}:${args.port}`,
logger,
});
await Metro.runServer(metroConfig, {
host: args.host,
...,
unstable_extraMiddleware: [
middleware,
// Optionally extend with additional HTTP middleware
],
websocketEndpoints: {
...websocketEndpoints,
// Optionally extend with additional WebSocket endpoints
},
});
}
@react-native/dev-middleware
is designed for integrators such as @expo/dev-server
and @react-native/community-cli-plugin
. It provides a common default implementation for core React Native dev server responsibilities.
We intend to keep this to a narrow set of functionality, based around:
DevMiddlewareAPI.middleware
These are exposed as a connect
middleware handler, assignable to Metro.runServer
or other compatible HTTP servers.
/json/list
, /json
(CDP)Returns the list of available WebSocket targets for all connected React Native app sessions.
/json/version
(CDP)Returns version metadata used by Chrome DevTools.
/debugger-frontend
Subpaths of this endpoint are reserved to serve the JavaScript debugger frontend.
/open-debugger
Open the JavaScript debugger for a given CDP target (direct Hermes debugging).
curl -X POST 'http://localhost:8081/open-debugger?appId=com.meta.RNTester'
DevMiddlewareAPI.websocketEndpoints
/inspector/device
WebSocket handler for registering device connections.
/inspector/debug
WebSocket handler that proxies CDP messages to/from the corresponding device.
Changes to this package can be made locally and tested against the rn-tester
app, per the Contributing guide. During development, this package is automatically run from source with no build step.
0.74.1
@react-native-community/cli
to 13.6.6 (58b1f9b2d4 by @szymonrybczak)BridgelessCatalystInstance
(cc1c69799e by @javache)foregroundActive
windows in RCTKeyWindow (eaaf865449 by @cipolleschi)FAQs
Dev server middleware for React Native
The npm package @react-native/dev-middleware receives a total of 2,233,109 weekly downloads. As such, @react-native/dev-middleware popularity was classified as popular.
We found that @react-native/dev-middleware demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.