connect-substitute

0.0.1-alpha2 • Public • Published

connect-substitute

A middleware to perform dynamic text substitution on served resources. Useful to automatically replace URLs within resources depending on whether a server is running in dev or production mode.

Usage

  1. Include connect-substitute in a node module.
    const substitute = require("connect-substitute");
  1. Add a middleware by calling the setup function.
    app.use(substitute.setup({
      from: "https://browserid.org",
      to: "https://login.persona.org"
    }));

from is the text to be changed. to is what you want to change from to.

The substitution middleware must be added before other middlewares that serve resources, including static middleware.

Credits:

This is an extremely thin wrapper around Lloyd Hilaiel's connect-postprocess. He is the brains behind it, I only added a slightly more restrictive but simpler API.

Build Status

Build Status

Author:

Getting involved:

Any updates are appreciated

License:

This software is available under version 2.0 of the MPL:

https://www.mozilla.org/MPL/

Readme

Keywords

none

Package Sidebar

Install

npm i connect-substitute

Weekly Downloads

4

Version

0.0.1-alpha2

License

none

Last publish

Collaborators

  • stomlinson