GithubHelp home page GithubHelp logo

zephraph / express-reloadable Goto Github PK

View Code? Open in Web Editor NEW

This project forked from artsy/express-reloadable

0.0 1.0 0.0 103 KB

Automatically hot-swap Express server code without the restart

Home Page: http://artsy.github.io/blog/2017/12/05/Express-Reloadable-Update/

License: Other

JavaScript 100.00%

express-reloadable's Introduction

@artsy/express-reloadable

When developing a Node app it's common to rely on tools like node-dev or nodemon to make the development process more rapid by automatically restarting the server instance on file-change. What express-reloadable does is listen for source-code changes within a subset of your app and, scanning Node's internal module cache, clears the require call if found. This tricks Node into thinking the module has not yet been loaded, effectively hot-swapping out your code without a full restart. Additionally, when the watchModules option is passed, express-reloadable will listen for changes to NPM module code and reload on change. Useful when working with yarn link across packages / repos. Crazy-fast development speed!

(Disclaimer: While this works for most of our use-cases, this is an example of "require hacking" and hasn't been tested in all environments. Your mileage may vary :)

How it works:

  • express-reloadable is called with a path to an app, which it then mounts
  • When source-code within that folder / app changes an internal lookup is made to Node, scanning its require cache for the changed file
  • If found, it is cleared internally via delete require.cache[id]
  • When a new request is made express-reloadable executes a callback that re-requires the code and changes are instantly available.

Installation:

yarn add @artsy/express-reloadable

Example:

The below example assumes that the folders /api and /client exist, and that each contain an index file that exports a mountable express.js route.

import express from 'express'
import { createReloadable, isDevelopment } from '@artsy/express-reloadable'

const app = express()

if (isDevelopment) {

  // Pass in `app` and current `require` context
  const mountAndReload = createReloadable(app, require)

  // Pass in the path to an express sub-app and everything is taken care of
  mountAndReload(path.resolve(__dirname, './client'))

  // Full example:
  app.use('/api', mountAndReload(path.resolve(__dirname, './api')), {

    // If you need to mount an app at a particular root (`/api`), pass in
    // `mountPoint` as an option.
    mountPoint: '/api',

    // Or if you're using `yarn link` (or npm) to symlink external dependencies
    // during dev, pass in an array of modules to watch. Changes made internally
    // will be instantly available in the app. Additionally, using something like 
    // `glob`, other modules outside of express route path can be passed.
    watchModules: [
      '@artsy/reaction',
      '@artsy/artsy-xapp'
    ]
  }))

  // If prod, mount apps like normal
} else {
  app.use('/api', require('./api')
  app.use(require('./client')
}

app.listen(3000, () => {
  console.log(`Listening on port 3000`)
})

Troubleshooting:

Help! I've mounted my app using reloadable but I'm not seeing any changes?

For the utility to work you need to a) ensure that NODE_ENV=development (for safety) and b) the path to your app is absolute:

// Incorrect
app.use(reloadAndMount('./path/to/app'))

// Correct :)
app.use(reloadAndMount(path.resolve(__dirname, 'path/to/app')))

Thanks:

This package was heavily inspired by @glenjamin's ultimate-hot-loading-example.

express-reloadable's People

Contributors

damassi avatar renovate-bot avatar artsyit avatar zephraph avatar l2succes avatar renovate[bot] avatar

Watchers

James Cloos 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.