
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
express-serve-writable
Advanced tools
Express middleware for writing to the filesystem with PUT/DELETE requests
Express middleware for writing to the filesystem with PUT/DELETE requests.
express-serve-writable is the writable complement to expressjs/serve-static's static file serving.
This will create a web server that will serve up files in a folder, and let you write or delete files inside that same folder:
var express = require("express");
var serveStatic = require("serve-static");
var serveWritable = require("express-serve_writable");
var args = process.argv.slice(2);
var root = args[0];
var app = express();
app.use(serveStatic(root));
app.use(serveWritable(root));
app.listen(3000);
Yes.
I want to build some local development tools for my HTML5 video games, and since the games are in HTML, the tools should be too. The problem is that the browser isn't allowed to write to the filesystem, and I need to do that.
FAQs
Express middleware for writing to the filesystem with PUT/DELETE requests
We found that express-serve-writable 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.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.