Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 568 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 568 Bytes

deep-swig

deep-swig provides deepjs styled client for swigjs (template engine) http://paularmstrong.github.io/swig/

Install

npm install deep-swig

or

bower install deep-swig

Usage

// example through deepLoad

require("deep-swig")();
require("deep-node/lib/rest/file/json")();

var obj = {
	template:"swig::./path/to/my/swig/template",
	context:{
		myData:"json::./path/to/datas.json",
		myTitle:"Hello world"
	}
};

deep.nodes(obj)
.deepLoad()
.done(function(obj){
	return obj.template(obj.context);
})
.log();