eight-track-normalize-multipart
multipart/form-data
normalize function for eight-track.
This was built to support easier testing against servers that accept mutlipart/form-data
.
Getting Started
Install the module with: npm install eight-track-normalize-multipart
// Load in dependencies
var normalizeMultipart = require('eight-track-normalize-multipart');
var express = require('express');
var eightTrack = require('eight-track');
// Create eight-track server that is normalizes multipart/form-data boundaries
express().use(eightTrack({
url: 'http://localhost:1337',
fixtureDir: 'directory/to/save/responses',
normalizeFn: normalizeMultipart
})).listen(1338);
Documentation
eight-track-normalize-multipart
exports normalizeMultipart
as its module.exports
.
normalizeMultipart
Function that has the signature as expected by eight-track's normalizeFn
parameter. It is designed to mutate info
but will not corrupt original request
data.
More information can be found in the specification.
Contributing
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint via grunt and test via npm test
.
Donating
Support this project and others by twolfson via gittip.
Unlicense
As of Jan 27 2014, Todd Wolfson has released this repository and its contents to the public domain.
It has been released under the UNLICENSE.