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

@ejnshtein/smol-request

Package Overview
Dependencies
Maintainers
1
Versions
23
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ejnshtein/smol-request - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

2

package.json
{
"name": "@ejnshtein/smol-request",
"version": "1.1.3",
"version": "1.1.4",
"description": "Tiny http/https request wrapper for Node.js 10 and newer",

@@ -5,0 +5,0 @@ "type": "commonjs",

@@ -6,3 +6,5 @@ import { Readable } from 'stream'

export interface RequestOptions extends http.RequestOptions {
params?: URLSearchParams
params?: {
[x: string]: string
}
responseType?: 'stream' | 'text' | 'buffer' | 'json' | 'headers'

@@ -12,3 +14,3 @@ }

export interface RequestResult {
data: Readable | Object | String | Buffer | Null
data: Readable | Object | String | Buffer | null
headers: Headers

@@ -25,4 +27,4 @@ status: Number

const request: Request
export const request: Request
export default request
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