Convert json files to xml with gulp
npm install gulp-jsontoxmlThe goal of this plugin is to take a JSON file and convert it to XML. The JSON files are passed through gulp.src in the gulpfile.
A sample JSON may look something like
```
{
"root":{
"section":[
{
"title":[
"First"
],
"content":[
"Data: buffer"
]
},
{
"title":[
"Second"
],
"content":[
"Data: string"
]
}
]
}
}
and if passed in to this plugin will return the following xml
``
The package gulp-xmltojson that converts xml files back to JSON is now availableCompact vs Non Compact #
This plugin takes in both compact and non-compact JSON files and the user can specify whether or not the file is in compact format by setting 'compact:true' or 'compact:false' in the options parameter.
A sample compact and non compact JSON comparison can be found here
The configObj in this situation is used for users to enter in options that the user can enter inorder to customize the resultant xml file. The table containing the options can be found here
##### Sample gulpfile.js
`
let gulp = require('gulp')
import {jsontoxml} from 'gulp-jsontoxml'
var sampleConfigObj = {compact: true, ignoreDeclaration: true, spaces: 4}; // sample configObj
exports.default = function() {
return src('data/*.json')
// pipe the files through our jsontoxml plugin
.pipe(jsontoxml(sampleConfigObj))
.pipe(gulp.dest('../testdata/processed'));
};
`npm install$3
* Dependencies:
* git
* nodejs - At least v6.3 (6.9 for Windows) required for TypeScript debugging
* npm (installs with Node)
* typescript - installed as a development dependency
* Clone this repo and run to install npm packagesOpen Folder
* Debug: with VScode use to open the project folder, then hit F5 to debug. This runs without compiling to javascript using ts-nodenpm test
* Test: or npm tnpm run build
* Compile to javascript:
We are using Jest for our testing. Each of our tests are in the test folder.
- Run npm test` to run the test suites
Note: This document is written in Markdown. We like to use Typora and Markdown Preview Plus for our Markdown work..