# vhtml
**Repository Path**: mirrors_developit/vhtml
## Basic Information
- **Project Name**: vhtml
- **Description**: Render JSX/Hyperscript to HTML strings, without VDOM 🌈
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-08
- **Last Updated**: 2026-07-25
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# vhtml
[](https://www.npmjs.org/package/vhtml)
[](https://travis-ci.org/developit/vhtml)
### **Render JSX/Hyperscript to HTML strings, without VDOM**
> Need to use HTML strings (angular?) but want to use JSX? vhtml's got your back.
>
> Building components? do yourself a favor and use [](https://github.com/developit/preact)
[**JSFiddle Demo**](https://jsfiddle.net/developit/9q0vyskg/)
---
## Installation
Via npm:
`npm install --save vhtml`
---
## Usage
```js
// import the library:
import h from 'vhtml';
// tell babel to transpile JSX to h() calls:
/** @jsx h */
// now render JSX to an HTML string!
let items = ['one', 'two', 'three'];
document.body.innerHTML = (
Here is a list of {items.length} items: