Skip to content

Instantly share code, notes, and snippets.

@JozefFlakus
Created March 1, 2019 21:54
Show Gist options
  • Save JozefFlakus/03efaf545d38f2fd2d7b0f649e8e4c3e to your computer and use it in GitHub Desktop.
Save JozefFlakus/03efaf545d38f2fd2d7b0f649e8e4c3e to your computer and use it in GitHub Desktop.
import { bodyParser$, jsonParser } from '@marblejs/middleware-body';
bodyParser$({
parser: jsonParser,
type: ['*/json', 'application/vnd.api+json'],
})
// or
import { bodyParser$, urlEncodedParser } from '@marblejs/middleware-body';
bodyParser$({
parser: urlEncodedParser,
type: ['*/x-www-form-urlencoded'],
});
// ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment