# inferno-create-element

> Provides methods to create Inferno VNodes

Latest version **9.1.0** (published 2026-04-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install inferno-create-element
pnpm add inferno-create-element
yarn add inferno-create-element
bun add inferno-create-element
```

## Health

**Score 65/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; high maintenance score; popular repo.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 9.1.0 |
| Published | 2026-04-07 |
| First published | 2016-04-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM |
| Dependencies | 1 |
| Unpacked size | 18.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 16456 |
| Author | Dominic Gannaway |
| Maintainers | longlho, nightwolfz, lukesheard, trueadm, havunen |
| Keywords | babel, react, inferno, framework, interfaces, user interfaces, vdom |

## Links

- npm: https://www.npmjs.com/package/inferno-create-element
- Repository: https://github.com/infernojs/inferno
- Homepage: https://github.com/infernojs/inferno#readme
- Issues: https://github.com/infernojs/inferno/issues
- npm.io page: https://npm.io/package/inferno-create-element

## Dependencies (1)

- [inferno](https://npm.io/package/inferno.md) 9.1.0

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 9.1.0 (latest) — 2026-04-07
- 9.0.12-alpha.1 (next) — 2026-04-06
- 3.9.0-alpha.1a5cdaaa (canary) — 2017-09-01
- 4.0.0-alpha1 (alpha#4-1) — 2017-06-25
- 1.0.0-beta44 (beta44) — 2016-12-28
- 1.0.0-beta43 (beta43) — 2016-12-27
- 1.0.0-beta42 (beta42) — 2016-12-23
- 1.0.0-beta41 (beta41) — 2016-12-23
- 1.0.0-beta40 (beta40) — 2016-12-23
- 1.0.0-beta39 (beta39) — 2016-12-22
- 1.0.0-beta38 (beta38) — 2016-12-22
- 1.0.0-beta37 (beta37) — 2016-12-19
- 1.0.0-beta36 (beta36) — 2016-12-17
- 1.0.0-beta35 (beta35) — 2016-12-16
- 1.0.0-beta34 (beta34) — 2016-12-15
- … 297 more at https://npm.io/package/inferno-create-element/versions

## README

# inferno-create-element

> Inferno package with helpers to create Inferno elements

## Install

```
npm install inferno-create-element
```

## Usage

```js
import { createElement } from 'inferno-create-element';
import { render } from 'inferno';

render(
  createElement('div', { className: 'test' }, "I'm a child!"),
  document.getElementById('app'),
);
```

---
_Source: https://npm.io/package/inferno-create-element · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
