FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

hpc12yala/node-json2html: Node.js implementation of the html templating engine JSON2HTML · GitHub

 
 

Latest commit

 

History

13 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-json2html

What is node-json2html?

node-json2html is a node modules that implements the HTML templating engine json2html for node.js

Ok so what is json2html?

json2html is a javascript HTML templating engine which converts json object to html using json transforms. Note that this node-json2html package includes the latest version of json2html core.

For more information check out the json2html core library

Also implemented for jquery jquery.json2html

Installation

npm install node-json2html

Usage

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

	var data = [{'male':'Bob','female':'Jane'},{'male':'Rick','female':'Ann'}];

	var transform = {'tag':'div','html':'${male} likes ${female}'};
        
	var html = json2html.transform(data,transform);

Why json2html?

Instead of writing HTML templates json2html relies on JSON transforms to convert a source JSON objects to html. The benefit of using a JSON transform is that they are already readable by the browser and DO NOT require any compilation before use. In addition, json2html allows the following

  • Short hand notation for mapping data objects to markup
  • Event binding to DOM objects (exclusively with jquery.json2html)
  • Use of inline functions to allow for complex logic during transformation
  • Dynamic building of transform objects

How do I start?

Check out our website www.json2html.com for more information including detailed usage notes, downloadable examples and more!

About

Node.js implementation of the html templating engine JSON2HTML

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages


Back | FazBrowse Home | New Git URL