
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
dave-rennes-react-xhr-uploader
Advanced tools
ReactJS component for XHR (level 2) file upload. Mine adds a try catch we needed.
React component for uploading files with XMLHTTPRequest v2
Check full documentation with examples at https://rma-consulting.github.io/react-xhr-uploader
Pull requests are welcome.
Use npm start
to run the webpack development server at localhost:8080. Hot module replacement is enabled.
Use npm test
to run the tests. Use npm test:tdd
to run the tests continuously in watch mode.
Use npm run test:lint
to run ESLint checks.
You will need a server that would accept post requests for multipart file uploads. Below is a sample express server to test out the examples.
const express = require('express');
const Busboy = require('busboy');
const fs = require('fs');
const port = 3000;
const app = express();
app.all('/api/uploadfile', function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Headers", "X-Requested-With, Content-Type");
next();
});
app.post('/api/uploadfile', (req, res) => {
const busboy = new Busboy({ headers: req.headers });
busboy.on('file', function(fieldname, file, filename) {
let saveTo = __dirname + '/uploads/' + fieldname + '-' + filename + Date.now();
file.pipe(fs.createWriteStream(saveTo));
});
busboy.on('finish', function() {
res.end('done');
});
res.on('close', function() {
req.unpipe(busboy);
});
req.pipe(busboy);
});
app.listen(port, '0.0.0.0', function () {
console.log(`Uploader server listening on port ${port}!`);
});
FAQs
ReactJS component for XHR (level 2) file upload. Mine adds a try catch we needed.
The npm package dave-rennes-react-xhr-uploader receives a total of 2 weekly downloads. As such, dave-rennes-react-xhr-uploader popularity was classified as not popular.
We found that dave-rennes-react-xhr-uploader 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.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.