express-msgpack

Transparent MessagePack middleware for Express // msgpack.org[JavaScript]

ISC License

Downloads
6.1K
Stars
7
Committers
3

Bot releases are visible (Hide)

express-msgpack - v5.1.0 Latest Release

Published by textbook 6 months ago

  • New limit feature added (see #454)
express-msgpack -

Published by textbook over 1 year ago

Breaking changes

  • Dropped Node 14 support
express-msgpack - v4.1.0

Published by textbook over 1 year ago

  • Restore CommonJS support (fixes #452)
express-msgpack -

Published by textbook over 2 years ago

Breaking changes

  • Dropped Node 12 support - testing is now carried out only in Node 14 and Node 16, and the TypeScript compilation target has been changed.
  • Switched to ES modules - this package needs imports not requires.
express-msgpack -

Published by textbook almost 3 years ago

  • TypeScript settings updated to explicitly target Node 10+ runtime
express-msgpack -

Published by textbook almost 3 years ago

Breaking changes

  • Switching the build toolchain to TypeScript means an update to imports is required:

    - const msgpack = require("express-msgpack");
    + const { default: msgpack } = require("express-msgpack");
    
express-msgpack - v1.0.0

Published by textbook almost 3 years ago

Express and MessagePack, together at last.

express-msgpack -

Published by textbook almost 3 years ago

Breaking changes

  • Dropped Node 10 support - I don't expect it to suddenly stop working, as the emitted JS is currently identical, but the pipeline no longer includes testing in Node 10 and some of the dev dependencies (e.g. ESLint) won't run in Node 10. Supported Node versions are now explicitly documented in the "engines" field in package.json, currently ">=12.9.0".