New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

is-json-request

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

is-json-request

Check if the current request is json, express js, next js, any node js server side code.

  • 1.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
10
decreased by-28.57%
Maintainers
1
Weekly downloads
 
Created
Source

is-json-request

Build Status

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/


Usage

import is-json-request

import { isJsonReq, isGetReq, isPostReq, isPutReq, isDeleteReq } from 'is-json-request';

Or

require is-json-request

const { isJsonReq, isGetReq, isPostReq, isPutReq, isDeleteReq } = require('is-json-request');

isJsonReq

This function checks if the current request is a json request or not.

Example:

if (isJsonReq(req)) {
  // Is a JSON request
}

isGetReq

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
}

isPostReq

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
}

isPutReq

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
}

isDeleteReq

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
}

Keywords

FAQs

Package last updated on 10 Dec 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc