
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@solid-devtools/frontend
Advanced tools
The frontend of the devtools extension as a npm package, so it can be embedded in different projects.
npm i @solid-devtools/frontend
# or
yarn add @solid-devtools/frontend
# or
pnpm add @solid-devtools/frontend
The debugger package is what you should use to get information out of the reactivity graph of an app you want to debug and display on the devtools.
You can communicate with it using it's plugin API. For reference, see the main package, which contains the code to communicate with the debugger from the devtools extension through a chrome postMessage API.
The devtools frontend is controlled with a Controller API. It provides a set of methods to trigger actions, and a way to get events from the devtools frontend.
const controller = new Controller({
onDevtoolsLocatorStateChange(enabled) {
console.log(enabled)
},
onHighlightElementChange(data) {
console.log(data)
},
onInspectNode(data) {
console.log(data)
},
onInspectValue(data) {
console.log(data)
},
})
This package is continuously under development, so the API is still not well defined. So instead of focusing on the API, the usage examples should show how you can embed this package in different context.
Chrome Extension - The extension is communicating with the debugger using the main npm package.
See CHANGELOG.md.
FAQs
Unknown package
The npm package @solid-devtools/frontend receives a total of 11,029 weekly downloads. As such, @solid-devtools/frontend popularity was classified as popular.
We found that @solid-devtools/frontend 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.