0.0.6 • Published 4 years ago

@meeshkanml/express-middleware v0.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
4 years ago

CircleCI npm version

Meeshkan express middleware

Express server middleware to log requests and responses in the HTTP Types format.

Installation

Install via npm:

npm install @meeshkanml/express-middleware

Usage

Add this middleware before adding routes, otherwise it won't work.

const mw, { LocalFileSystemTransport } = require("@meeshkan/express-middleware");

// Add custom transports with signature
// `type HttpExchangeTransport = (httpExchange: HttpExchange) => Promise<void>;`
// Here `HttpExchange` is defined in `ts-http-types`
const customTransport = async httpExchange => {
  console.log("Got http exchange", httpExchange);
};

// Add middleware
app.use(
  middleware({
    transports: [
      LocalFileSystemTransport("http-exchanges.jsonl"),
      customTransport
    ],
  })
);
// add routes

Development

Install dependencies:

$ yarn

Run tests:

$ yarn test

Compile TypeScript:

$ yarn compile

Publish package:

$ yarn publish --access public

Push git tags:

$ TAG=v`cat package.json | grep version | awk 'BEGIN { FS = "\"" } { print $4 }'`
$ git tag -a $TAG -m $TAG
$ git push origin $TAG
0.0.6

4 years ago

0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago

0.0.0

4 years ago