xls2xform-upload
Upload and convert XLSForm into XForm in nodejs
It support both multiparty request and normal http request where xlsform is send as base64 encoded content
Installation
$ npm install --save xls2xform-uploadUsage
var app = require('express');
var xlsformUpload = require('xls2xform-upload');
//use xlsform in your middlewares chain
app.get('/xform', xlsformUpload(), function(request, response) {
//obtain xform details from request body
//by using fieldName or default to `xlsform`
request.body.xlsform;
});
//or with options supplied
app.get('/xform', xlsformUpload({
fieldName: 'form'
}), function(request, response) {
//obtain xform details from request body
//by using fieldName or default to `xlsform`
request.body.form;
});Options
xls2xform-upload accept the following options
fieldNamea name of the field used to extract xlsform details frommultipartyor normal http request default toxlsform
Base64 Convertion
In base64 convertion you will have to prepare a json payload as below:
{
`<fieldName>`: {
name: 'simple.xls',
type: 'application/vnd.ms-excel',
size: 8704,
base64: //xlsform encoded as base64
}
}<fieldName> must match the fieldName options supplied when configure middleware stack.
nameis the name of xlsformtypemime type of xlsformsizesize in bytes of the xlsformbase64base64 encoded xlsform
Multiparty Convertion
In multiparty convertion your have to make sure file field is single upload and its name match the fieldName options supplied when configure middleware stack.
<input type="file" name="xlsform">