auth0/express-xml-bodyparser

Name: express-xml-bodyparser

Owner: Auth0

Description: Simple XML body parser connect/express middleware

Created: 2018-04-13 16:57:07.0

Updated: 2018-04-13 16:57:09.0

Pushed: 2018-04-16 11:12:53.0

Homepage: null

Size: 87

Language: JavaScript

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

NPM Version Dependency Status Build Status Code Coverage status Gitter channel

express-xml-bodyparser

For those rare cases when you have to parse incoming raw xml-body requests. This middleware works with any connect- or express-based nodejs application.

Description

Admittedly, having to deal with XML data has become less common in recent years. Still, there are services and APIs using this format. The middleware is based on the connect-json middleware as a blueprint.

There is a similar xml bodyparser module available, but you might appreciate some notable differences:

Installation

Utilize npm by typing npm install express-xml-bodyparser --save in your projects root folder and your good to go.

Configuration

You can pass configuration options into the XML parser middleware. They're exactly the same options you would use for xml2js, which this middleware relies on. For further details look at all available configuration options.

Without specifying custom options, the middleware applies some opionated defaults meant to normalize the resulting json object properties. All whitespace in text nodes will be trimmed, property and tag names will be lowercased. The parser will always return node lists explicitly cast to Array.

NOTE: Custom options will be merged with aforementioned opionated defaults, so in case you want to use xml2js defaults, you will have to specify the following:

xml2jsDefaults = {
explicitArray: false,
normalize: false,
normalizeTags: false,
trim: true

This change appeared in v0.1.0, older versions would merge options against xml2js's default options.

Typescript support

There are now type-definitions available at DefinitelyTyped. In order to use them in your project, add this to your (development) dependencies:

install --save-dev @types/express-xml-bodyparser

Thanks to @noticeMaker for creating the type-definitions.

Usage

You can either use express-xml-bodyparser at application level, or for specific routes only.

Here is an example of an express application with default settings:

express = require('express'),
app = express(),
http = require('http'),
server = http.createServer(app),
xmlparser = require('express-xml-bodyparser');

. other middleware ...
use(express.json());
use(express.urlencoded());
use(xmlparser());
.. other middleware ...

post('/receive-xml', function(req, res, next) {

 req.body contains the parsed xml



er.listen(1337);

If you wanted to use express-xml-bodyparser for specific routes only, you would do something like this:

post('/receive-xml', xmlparser({trim: false, explicitArray: false}), function(req, res, next) {
 check req.body

Above example demonstrates how to pass custom options to the XML parser.

Customize mime-type detection

If you want to customize the regular expression that checks whether the xmlparser should do its work or not, you can provide your own by overloading the xmlparser.regexp property, like so:

xmlparser = require('express-xml-bodyparser');
arser.regexp = /^text\/xml$/i;

Doing so, will allow you to restrict XML parsing to custom mime-types only. Thanks to @ophentis for the suggestion. Just make sure your regular expression actually matches mime-types you're interested in. The feature is available since version v0.0.5.

IMPORTANT In versions v0.2.x custom regular expressions were ignored in mime-type parsing. The issue has been fixed in v0.3.0. If you need/rely on this feature, please upgrade to a newer version. Many thanks to @dirksen who discovered this issue.

Roadmap to v1.0.0

Lets start a discussion how to get to there (stable API).

Here are some thoughts:


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.