0.0.3 • Published 10 years ago

multipost v0.0.3

Weekly downloads
2
License
-
Repository
github
Last release
10 years ago

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.

0.0.3

10 years ago

0.0.2

11 years ago

0.0.1

12 years ago