![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.
@nextnextools/xrom
Advanced tools
Run [dockerized Chromium or Firefox in headless remote debugging mode](https://github.com/nextools/images) and return `browserWSEndpoint` needed for `puppeteer.connect()`.
Run dockerized Chromium or Firefox in headless remote debugging mode and return browserWSEndpoint
needed for puppeteer.connect()
.
$ yarn add xrom
type TRunBrowserOptions = {
browser: 'chromium' | 'firefox',
version: string,
dockerUrlRoot?: string
port?: number,
fontsDir?: string,
mountVolumes?: {
from: string,
to: string,
}[],
cpus?: number,
cpusetCpus?: number[]
}
type TRunBrowserResult = {
browserWSEndpoint: string,
closeBrowser: () => Promise<void>,
}
runBrowser(options: TRunBrowserOptions) => Promise<TRunBrowserResult>
import { runBrowser } from 'xrom'
import puppeteer from 'puppeteer-core'
const { browserWSEndpoint } = await runBrowser({ browser: 'chromium' })
const browser = await puppeteer.connect({ browserWSEndpoint })
You can override the root URL to use some other set of docker images of Chromium and/or Firefox.
Make sure the final link, which is evaluated as ${dockerUrlRoot}/${browser}:${version}
, points to a docker image that is valid and public.
const { browserWSEndpoint, closeBrowser } = await runBrowser({
dockerUrlRoot: 'ghcr.io/shenato/docker-browser',
browser: 'chromium',
version: opts.chromiumVersion,
fontsDir: opts.fontsDir,
})
FAQs
Run [dockerized Chromium or Firefox in headless remote debugging mode](https://github.com/nextools/images) and return `browserWSEndpoint` needed for `puppeteer.connect()`.
The npm package @nextnextools/xrom receives a total of 56,565 weekly downloads. As such, @nextnextools/xrom popularity was classified as popular.
We found that @nextnextools/xrom 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
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.