Check if the current request is json, express js, next js, any node js server side code. (supports module and commonJS).
https://shadiabuhilal.github.io/is-json-request/
import { isJsonReq, isGetReq, isPostReq, isPutReq, isDeleteReq } from 'is-json-request';
Or
const { isJsonReq, isGetReq, isPostReq, isPutReq, isDeleteReq } = require('is-json-request');
This function checks if the current request is a json request or not.
Example:
if (isJsonReq(req)) {
// Is a JSON request
}
This function checks if the current request is a http GET method request or not.
Example:
if (isGetReq(req)) {
// Is a HTTP GET method request
}
This function checks if the current request is a http POST method request or not.
Example:
if (isPostReq(req)) {
// Is a HTTP POST method request
}
This function checks if the current request is a http PUT method request or not.
Example:
if (isPutReq(req)) {
// Is a HTTP PUT method request
}
This function checks if the current request is a http DELETE method request or not.
Example:
if (isDeleteReq(req)) {
// Is a HTTP DELETE method request
}