
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.
@webdav-server/github
Advanced tools
webdav-server version 2
Allow to see the list of files/directories in a GitHub repository. It is read-only.
npm install @webdav-server/github
// TypeScript
import { v2 as webdav } from 'webdav-server'
import * as github from '@webdav-server/github'
// JavaScript
const webdav = require('webdav-server').v2;
const github = require('@webdav-server/github');
const server = new webdav.WebDAVServer({
// [...]
autoLoad: {
// [...]
serializers: [
new github.GitHubSerializer()
// [...]
]
}
})
// for client_id and client_secret, refer to https://developer.github.com/v3/oauth_authorizations/
server.setFileSystemSync('/myPath', new github.GitHubFileSystem('openmarshal', 'npm-WebDAV-Server', 'client_id...', 'client_secret...'), false);
server.start((s) => console.log('Ready on port', s.address().port));
FAQs
GitHub file system for webdav-server
The npm package @webdav-server/github receives a total of 0 weekly downloads. As such, @webdav-server/github popularity was classified as not popular.
We found that @webdav-server/github 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.

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.