sw-express

1.0.2 • Public • Published

Express Service Worker

Extend express to run as a service worker in the browser

Install

npm install sw-express

Use

import { express } from 'sw-express';
 
const app = express();
 
// This is a custom body parser for fetch requests.
app.use((req, res, next) => {
  req.request.text().then(text => {
    if (text) {
      // Attempt to convert to an object if it is json. Otherwise return the text.
      try {
        req.body = JSON.parse(text);
      }
      catch (err) {
        req.body = text;
      }
    }
    next();
  });
});
 
app.use((req, res, next) => {
  // Write your own middleware as usual.
  next();
});
 
// Handle errors
app.use((err, req, res, next) => {
  if (err) {
    console.error(err);
  }
  next();
});
 
// Listen to a URL, not a port. This will intercept any requests made to this url.
app.listen('http://myserver.com');

Dependents (0)

Package Sidebar

Install

npm i sw-express

Weekly Downloads

1

Version

1.0.2

License

MIT

Unpacked Size

90.3 kB

Total Files

14

Last publish

Collaborators

  • randallknutson