AdamHess / node-xdt

Node.js module to transform Web.config(XML) using xdt(Microsoft Xml Document Transformation)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

node-xdt

Node.js module to transform Web.config(XML) using xdt(Microsoft Xml Document Transformation)

npm install node-xdt --save

var xdt = require('node-xdt');

var options = {
	 src: '{path}/Web.config',
     dest: '{outpath}/Web.config',
     transform:'{path}/Web.Release.config',
     useMono: true
};

xdt(options,function(error){
	//....
});

About

Node.js module to transform Web.config(XML) using xdt(Microsoft Xml Document Transformation)

License:MIT License


Languages

Language:JavaScript 100.0%