Shaven is a simple DOM building utility and template engine based on JsonML
npm install shaven!Logo
[![Build Status][build-status]](https://travis-ci.org/ad-si/shaven)
A DOM building utility and Template engine
based on JsonML with syntax sugar.
Checkout [shaven.ad-si.com] for extensive documentation.
[build-status]: https://travis-ci.org/ad-si/shaven.svg
[shaven.ad-si.com]: https://shaven.ad-si.com
``javascript`
shaven(
[document.body,
['h1#logo', 'Static Example'],
['p','Some example text'],
['ul#list.bullets',
['li', 'item1'],
['li.active', 'item2'],
['li',
['a', 'item3', {href: '#'}]
]
],
['em', 'Important', {
style: {
color: 'red',
'font-size': '2em',
},
}]
]
)
compiles to
` Some example texthtml`
Static Example
Important
In order to convert HTML fragments to shaven arrays
html2shaven can be used.
- Syntax Sugar for ids, classes and variable caching
- Support for namespaces. (Lets you build SVGs and other XML based languages)
- Callback functions on elements
- Returns a Object containing the root element and the elements with an id
- Leverage the full power of JavaScript in your templates.
=> No need to learn a new language!
- Directly integrable into JavaScript files
- Works in front- and backend environment
- Templates normally tend to get more complicated with the number of variables
as they need to get escaped in some way.
With Shaven it's exactly the opposite. As variables are native to Shaven
the templates get simpler with an increasing number of variables.
- Shaven templates can be easily build with every major programming language
and their existing JSON/YAML tools.
`shell`
npm install --save shaven
Check out [shaven.ad-si.com] for a
detailed description of how to install shaven in other environments.
- Firefox: 20+
- Opera: 21+
- Chrome: 34+
- Safari: 9+ (Does not correctly escape HTML strings in attributes)
- IE: ? (Probably 9+. Please submit a pull request if you know more.)
- Edge (EdgeHTML): 12+
Earlier Firefox, Opera and Chrome versions have the same bug as Safari.
That means even much older versions will just work fine
under normal circumstances.
Check if code changes must be made in the server
and browser version of shaven.
- Build website makenpm run prepublish
- Bump version
1. Change version number in package file (semver)
2. Execute v
3. Commit
4. Tag commit ()npm publish
- Publish to npm make deploy`
- Release new version of website: