Structured Components

This commit is contained in:
Zoheb Alli Khan 2021-06-03 09:59:08 +05:30
parent 81add6e07b
commit 9731e6841b
1 changed files with 9 additions and 9 deletions

View File

@ -16,28 +16,28 @@ Methods;
express.json([options]); express.json([options]);
options: ` options: `
inflate // to manage the deflated bodies like enabling and disabling inflate // to manage the deflated bodies like enabling and disabling
limit // Controls the maximum request body size. limit // Controls the maximum request body size.
reviver // It is passed directly to JSON.parse as an second argument reviver // It is passed directly to JSON.parse as an second argument
type // This is used to determine the type of middleware will parse type // This is used to determine the type of middleware will parse
verify // It is an undefined function which used to verify the middleware parsing. verify // It is an undefined function which used to verify the middleware parsing.
`; `;
express.raw([options]); express.raw([options]);
options: ` options: `
inflate // to manage the deflated bodies like enabling and disabling inflate // to manage the deflated bodies like enabling and disabling
limit // Controls the maximum request body size. limit // Controls the maximum request body size.
type // This is used to determine the type of middleware will parse type // This is used to determine the type of middleware will parse
verify // It is an undefined function which used to verify the middleware parsing. verify // It is an undefined function which used to verify the middleware parsing.
`; `;
express.Router([options]); express.Router([options]);