1.0.2 • Published 9 years ago

koa-xml v1.0.2

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

koa-xml

Node version NPM version Build Status bitHound Score bitHound Dependencies license

XML request body parser for koa

Usage

npm install --save koa-xml
const koa = require('koa')
const xml = require('koa-xml')

const options = {
  normalize: true,
  firstCharLowerCase: true,
  explicitArray: false,
  ignoreAttrs: true
}

app.use(xml(options))

Xml parse options

Uses xml2js see all available options

Supported methods: POST, PUT, PATCH, and TRACE.

Supported Content-Type: application/xml

Contributing

  • Fork it
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create new Pull Request

Maintaners

License

koa-xml is released under the MIT License.