Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
file-uploader-ta
Advanced tools
Programmatic multipart file uploads. Designed for testing file uploads. Temporary fixes fork of https://github.com/timoxley/file-uploader
This module allows you to easily test the file uploading capabilities of your API by allowing you to perform a multipart file upload programmatically.
var uploader = require('file-uploader')
var file // set to the path of the file you want to upload
var cookie // set a cookie if you require authorisation
var options = {
host : 'localhost',
port : 4000,
path : '/upload',
method : 'POST',
encoding : 'utf8'
}
uploader.postFile(options, file, {Cookie: cookie}, function(err, res) {
console.log(res.statusCode)
})
Recently I've been using the superagent and supertest modules to send/test file attachments. The interface is clean, and they provide other essential HTTP requesting and testing functionality. I recommend you try them out before doing anything else, ever.
Code originally taken(stolen?) from Anand Prakash: http://www.anandprakash.net/2011/10/20/server-side-multipartform-data-uploads-from-nodejs/
Current version has slight modification and bugfixes.
If Anand Prakash wants to take ownership this repository, he's more than welcome to.
Test Image By Microchip08 (talk) as well as those of Image:Recycled kitten.jpg (Image:Recycled kitten.jpg) [GFDL (www.gnu.org/copyleft/fdl.html) or CC-BY-SA-3.0 (www.creativecommons.org/licenses/by-sa/3.0/)], via Wikimedia Commons
FAQs
Programmatic multipart file uploads. Designed for testing file uploads. Temporary fixes fork of https://github.com/timoxley/file-uploader
We found that file-uploader-ta 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
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.