Code Monkey home page Code Monkey logo

connect-chokidar's Introduction

connect-chokidar Build Status NPM version

Middleware to watch files and remove require.cache on change, making nodemon unnecessary.

Motivation

Sometimes restarting the entire process when a file changes (as with nodemon) takes too long or is undesirable. This is often the case with "universal" web applications, where the code which runs both on the client and server is already hot-reloaded with webpack. In such apps we sometimes have server-only code (such as a GraphQL server or a RESTful API). Restarting the entire server with nodemon would mean forcing webpack to have to take time to rebuild, loosing the benefits of hot reloading.

This module saves that time by specifically only removing files from the require.cache (a cache that require() uses on every call) when a change to one of the files on the file system is detected.

Usage

const createWatcher = require('connect-chokidar');

const watchMiddleware = createWatcher(`${__dirname}`, {
  // `process.env.NODE_ENV === 'development'` will be used as the default
  // when this is `false`, no file watching will be done and your middleware
  // will be executed with minimal interference
  isDevEnv: process.env.NODE_ENV === 'development',

  // Only the filenames that are in the regexp below will be deleted
  // from `require.cache` when files change
  requireCacheToRemoveRe: /\/src\//,

  // `usePolling: true` is usually necessary with NFS (and, for me, in docker for mac)
  // other `chokidar` opts can also be provided here
  chokidar: {
    usePolling: true,
  },
});

//...

const app = connect(); // or express()

// Now is the trickier bit, you'll have to `require()` all of the files that your
// local middleware or router depend on. This is because if we required it on top,
// the router / middleware would always refer to that instance and there would be
// no way of clearing it.

app.use('/auth', watchMiddleware(() => require('../auth/router')));

app.use(
  '/api',
  watchMiddleware(() => {
    const midA = require('./middlewareA');
    const apiRouter = require('./api/router');
    return [midA, apiRouter];
  }),
);

app.use(
  '/hello',
  watchMiddleware(() => {
    const midA = require('./middlewareA');
    return [
      midA,
      (req, res) => {
        res.end('world');
      },
    ];
  }),
);

Debug-logging

Run your process with the NODE_DEBUG=connect-chokidar environment variable set.

Inspiration

https://codeburst.io/dont-use-nodemon-there-are-better-ways-fc016b50b45e

License

MIT

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.