1.0.1 • Published 3 years ago

uws-body-parser v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

uws-body-parser

uws-body-parser is a request body parsing middleware for uWebSockets.js.

Typical usage

const { App } = require('uWebSockets.js');

const { bodyParser } = require('uws-body-parser');

const app = App();

app.post('/my/api/endpoint', (res, req) => {
  bodyParser(res, req, (data, wasParsed) => {
      // `wasParsed` argument is a boolean indicating if the body was actually parsed
      if (!wasParsed) {
        console.log('Body not parsed!');
      }
      // `data` argument is the parsed JSON/xWwwFormUrlEncoded/Raw Buffer body
      console.log(data);
      // TODO: your logic here
    }, () => { console.error('request aborted'); }
  );
});