vite-hot-client
TypeScript icon, indicating that this package has built-in type declarations

2.0.4 • Public • Published

vite-hot-client

NPM version

Get Vite's import.meta.hot at runtime.

You don't normally need this library directly. It's designed for embedded UI on top of Vite for client-server communication. For example:

Install

npm i vite-hot-client

Usage

import { hot } from 'vite-hot-client'

// import.meta.hot
if (hot) {
  hot.on('update', () => {
    // ...
  })
}
import { createHotContext } from 'vite-hot-client'

const hot = createHotContext('/path/to/module')

if (hot) {
  // ...
}

Sponsors

License

MIT License © 2022 Anthony Fu

Readme

Keywords

none

Package Sidebar

Install

npm i vite-hot-client

Weekly Downloads

850,215

Version

2.0.4

License

MIT

Unpacked Size

6.7 kB

Total Files

6

Last publish

Collaborators

  • antfu