New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

kdu-reload-api

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kdu-reload-api

hot reload api for *.kdu components

latest
Source
npmnpm
Version
2.2.0
Version published
Maintainers
1
Created
Source

kdu-reload-api

Note: kdu-reload-api@2.x only works with kdu@2.x

Hot reload API for Kdu components. This is what kdu-loader and kdurial use under the hood.

Usage

You will only be using this if you are writing some build toolchain based on Kdu components. For normal application usage, just use kdu-loader or kdurial.

// define a component as an options object
const myComponentOptions = {
  data () { ... },
  created () { ... },
  render () { ... }
}

// assuming Webpack's HMR API.
// https://webpack.js.org/guides/hot-module-replacement/
if (module.hot) {
  const api = require('kdu-reload-api')
  const Kdu = require('kdu')

  // make the API aware of the Kdu that you are using.
  // also checks compatibility.
  api.install(Kdu)

  // compatibility can be checked via api.compatible after installation
  if (!api.compatible) {
    throw new Error('kdu-reload-api is not compatible with the version of Kdu you are using.')
  }

  // indicate this module can be hot-reloaded
  module.hot.accept()

  if (!module.hot.data) {
    // for each component option object to be hot-reloaded,
    // you need to create a record for it with a unique id.
    // do this once on startup.
    api.createRecord('very-unique-id', myComponentOptions)
  } else {
    // if a component has only its template or render function changed,
    // you can force a re-render for all its active instances without
    // destroying/re-creating them. This keeps all current app state intact.
    api.rerender('very-unique-id', myComponentOptions)

    // --- OR ---

    // if a component has non-template/render options changed,
    // it needs to be fully reloaded. This will destroy and re-create all its
    // active instances (and their children).
    api.reload('very-unique-id', myComponentOptions)
  }
}

Keywords

kdu

FAQs

Package last updated on 20 Jan 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts