I want to accept the file sent in the request object from the curl CLI and modify it in my express.js server.
For example: User attempts as such:
curl -T somefile.txt https://example.com/uploadfile
Accept it in:
app.put("/uploadfile", function (req, res) {
// access the file here
});