Giter VIP home page Giter VIP logo

babel-plugin-dva-core-hmr's Introduction

babel-plugin-dva-core-hmr

Build Status License No Dependencies

HMR support for dva-core/dva, only suppport dva>=2.4.0 or dva-core>=1.4.0. Especially useful for those apps using dva-core instead of dva. When this plugin is enabled, HMR will be enabled for dva models.

Installation

yarn

yarn add babel-plugin-dva-core-hmr

npm

npm install babel-plugin-dva-core-hmr

.babelrc:

{
  "plugins": ["dva-core-hmr"]
}

What it does

It will add HMR code for app.model call. require "dva-core": "^1.4.0"

Taking from the test snapshots, it does this:

import HomeModel from '../model/home';
      app.model(HomeModel)

           

import HomeModel from '../model/home';
app.model(HomeModel);

if (module.hot) {
  module.hot.accept("../model/home", () => {
    try {
      let newModel = require("../model/home");

      if (newModel.default) newModel = newModel.default;
      app.replaceModel(newModel);
    } catch (e) {
      console.error(e);
    }
  });
}

For more usages, please find the detail in ./__tests__/index.js

Options

appNames:what dva-core/dva instance names should be matched. default: ['app']

appImport + appImportName: if app.model doesn't get run on module level, whe webpack HMR happens, HMR code of model won't get excuted, and with these two options set, HMR code of model will to promoted to module level. Please find more information in tests.

Why HMR does't work?

  • Check whether babel-loader is enabled for those models.
  • Check whether app.model is called. If not, please change plugin config appNames. For example, if your code has dva.model and you want to enable HMR, please change config to appNames: ['dva']

babel-plugin-dva-core-hmr's People

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.