🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

multipost

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multipost

An easy interface for sending data via the multipart/form-data protocol

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

Multipost: An easy interface for the multipart/form-data protocol

Install

Multipost is easily installable via npm. Just run the following command:

$ npm install multipost

Or, if you'd like to install Multipost at the global level, at the global flag

$ npm install multipost -g

Quick Start

There are quick start examples found in the test directory. Here's a basic usage for uploading a standard form:

var multipost = require("multipost");

var postFields = [
        {
            name: "field1", //Required
            value: "thisisfield1" //Required
        },
        {
            name: "field2",
            value: "thisisfield2"
        }
    ];

var req = new multipost("http://www.wegnerdesign.com/testFiles.php", postFields);

req.post(function(res) {
    console.log(res.data); 
});

License

This module is released under the GPL.

Contributors

Joe Wegner via WegnerDesign

Thanks

Huge thanks to onteria_ for the wonderful information found in this post.

FAQs

Package last updated on 31 Mar 2014

Did you know?

Socket

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.

Install

Related posts