htjs

v1.4.1
A simple internal DSL for constructing HTML with JS
HTML JS javascript DSL internal

htjs

A simple internal DSL for constructing HTML with JS.

Demo

Clone from git, execute

$ npm install
$ npm start

... and navigate to http://localhost:8000/demo.html.

Usage

$ npm install htjs

And

var htjs = require('htjs');
var form = htjs('form', {method: 'POST', action: '.'}, [
    htjs('input', {type: 'text', name: 'username'}),
    htjs('input', {type: 'password', name: 'password'}),
    htjs('input', {type: 'submit'}),
]);
element.appendChild(form);

Coffeescript gives you a more readable layout:

$ = require 'htjs'
documentFragment = $ [
    $ null, 'a text node'
    $ 'div', [
        $ 'div' # an empty div
    ]
]
npm i htjs

Metadata

  • ISC
  • Whatever
  • Roald de Vries
  • released 6/11/2015

Downloads

Maintainers