0.1.1 • Published 7 years ago

hyper-xml v0.1.1

Weekly downloads
2
License
ISC
Repository
github
Last release
7 years ago

hyper-xml

A DSL to create JSON trees compatible with xml-reader. Tries to comply with the h2spec.

npm version build status ISC-licensed chat on gitter

Installing

npm install hyper-xml

Usage

const h = require('hyper-xml')

const one = h('one', {a1: 'v1'}, [
	h('two', [
		h('three', {a2: 'v2', a3: 'v3'}),
		'four'
	])
])

one will look like this:

{
	type: 'element',
	name: 'one',
	attributes: {a1: 'v1'},
	children: [{
		type: 'element',
		name: 'two',
		children: [{
			type: 'element',
			name: 'three',
			attributes: {a2: 'v2', a3: 'v3'}
		}, {
			type: 'text',
			value: 'four'
		}]
	}]
}

Contributing

If you have a question or have difficulties using hyper-xml, please double-check your code and setup first. If you think you have found a bug or want to propose a feature, refer to the issues page.