![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
This POC shows how browser crashes could potentially be detected.
npm run dev
npm run server
There are two basic concepts:
Each browser tab reports its current state on regular intervals. The current state is saved in IndexedDB as a state report. The state report contains properties like: last time when it was active, url, memory usage, etc. The state report is removed from the database when then the tab is closed by the user.
A separate process reads all currently stored state reports. If it happens that there's a stale state report that is still in the database but updated for long period of time it means the tab was not closed correctly or stopped responding and it probably crashed.
You need to create 2 files for workers and run init function in your app:
detector.worker.js
import { initDetectorWorker } from 'crashme';
initDetectorWorker({
dbName: 'crashme.crashes',
crashThreshold: 5000,
interval: 5000,
});
client.worker.js
import { initDetectorWorker } from 'crashme';
initClientWorker({
dbName: 'crashme.crashes',
pingInterval: 1000,
});
and run function to initialize detection:
import { initCrashDetection } from 'crashme';
export function startReportingCrashes() {
initCrashDetection({
id: Math.random().toString(36).substr(2,5), // create unique id
dbName: 'crashme.crashes',
createClientWorker: () => {
return new Worker(new URL('./client.worker', import.meta.url));
},
createDetectorWorker: () => {
return new SharedWorker(new URL('./detector.worker', import.meta.url));
},
reportCrash: async (tab) => {
// add your logic to report the crash
// return true if reporting was successul
return true;
},
updateInfo: (report) => {
// enrich report with any properties you would like to track
},
});
}
More info why 2 separate workers are needed is described here.
FAQs
This POC shows how browser crashes could potentially be detected.
The npm package crashme receives a total of 1,528 weekly downloads. As such, crashme popularity was classified as popular.
We found that crashme demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.