Options
All
  • Public
  • Public/Protected
  • All
Menu

reload modules

reload nodejs modules with batchdelcache

Build Status Coverage Status

Installation

# use npm
npm install reload-modules
# or use yarn
yarn add reload-modules

Environment

Node.js 10+

Usage

import Reloader from 'reload-modules';

const reloader = new Reloader({
    fileMap: {
        mod1: 'abcd',
        mod2: 'efcg',
    },
    context: resolve(__dirname, './fixtures'),
    commonRootPath: resolve(__dirname, './fixtures/mainModule.js'),
});

reloader.reload({
    mod1: 'xxxx',
    mod2: 'xxxx',
});

Index

Classes

Interfaces

Type aliases

Type aliases

IFileMapItem

IFileMapItem: string | { key: string; parents?: string[] }

Legend

  • Constructor
  • Property
  • Method
  • Property
  • Private method

Generated using TypeDoc