# @vue/runtime-core

> @vue/runtime-core

Latest version **3.5.43** (published 2026-09-17) · MIT license · 0 weekly downloads

## Install

```sh
npm install @vue/runtime-core
pnpm add @vue/runtime-core
yarn add @vue/runtime-core
bun add @vue/runtime-core
```

## Health

**Score 80/100 (A)** — status: active.

Positive: has types; esm support; no vulnerabilities; has provenance; recently updated; high maintenance score; popular repo; extremely popular.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 3.5.43 |
| Published | 2026-09-17 |
| First published | 2019-12-20 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 834.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Provenance | attested (GitHub Actions) |
| GitHub stars | 54398 |
| Author | Evan You |
| Maintainers | yyx990803 |
| Keywords | vue |

## Links

- npm: https://www.npmjs.com/package/@vue/runtime-core
- Repository: https://github.com/vuejs/core
- Homepage: https://github.com/vuejs/core/tree/main/packages/runtime-core#readme
- Issues: https://github.com/vuejs/core/issues
- npm.io page: https://npm.io/package/@vue/runtime-core

## Dependencies (2)

- [@vue/shared](https://npm.io/package/@vue/shared.md) 3.5.43
- [@vue/reactivity](https://npm.io/package/@vue/reactivity.md) 3.5.43

## Recent versions

- 3.5.43 (latest) — 2026-09-17
- 3.6.0-rc.8 (rc) — 2026-09-11
- 3.6.0-beta.17 (beta) — 2026-06-24
- 3.6.0-alpha.7 (alpha) — 2025-12-12
- 3.6.0-rc.7 — 2026-09-04
- 3.6.0-rc.6 — 2026-08-28
- 3.5.42 — 2026-08-27
- 3.6.0-rc.5 — 2026-08-21
- 3.6.0-rc.4 — 2026-08-14
- 3.6.0-rc.3 — 2026-08-11
- 3.5.41 — 2026-08-05
- 3.6.0-rc.2 — 2026-07-22
- 3.6.0-rc.1 — 2026-07-18
- 3.5.40 — 2026-07-16
- 3.5.39 — 2026-06-25
- … 285 more at https://npm.io/package/@vue/runtime-core/versions

## README

# @vue/runtime-core

> This package is published only for typing and building custom renderers. It is NOT meant to be used in applications.

For full exposed APIs, see `src/index.ts`.

## Building a Custom Renderer

```ts
import { createRenderer } from '@vue/runtime-core'

const { render, createApp } = createRenderer({
  patchProp,
  insert,
  remove,
  createElement,
  // ...
})

// `render` is the low-level API
// `createApp` returns an app instance with configurable context shared
// by the entire app tree.
export { render, createApp }

export * from '@vue/runtime-core'
```

See `@vue/runtime-dom` for how a DOM-targeting renderer is implemented.

---
_Source: https://npm.io/package/@vue/runtime-core · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
