Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joyqi/html-to-snabbdom
Transform HTML to Snabbdom VNodes.
https://github.com/joyqi/html-to-snabbdom
snabbdom
Last synced: 17 days ago
JSON representation
Transform HTML to Snabbdom VNodes.
- Host: GitHub
- URL: https://github.com/joyqi/html-to-snabbdom
- Owner: joyqi
- License: mit
- Created: 2022-11-08T14:50:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-08T17:21:11.000Z (about 2 years ago)
- Last Synced: 2024-10-22T09:55:00.203Z (24 days ago)
- Topics: snabbdom
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/html-to-snabbdom
- Size: 33.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# html-to-snabbdom
Transform HTML to Snabbdom VNodes.
## Installation
```bash
npm install html-to-snabbdom
```## Usage
```js
import { h2v } from 'html-to-snabbdom';const vnode = h2v('
Hello World');
```