You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 month ago | |
---|---|---|
.. | ||
dist | 1 month ago | |
LICENSE | 1 month ago | |
README.md | 1 month ago | |
package.json | 1 month ago |
README.md
vite-hot-client
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