Socket
Socket
Sign inDemoInstall

@fangxq/request

Package Overview
Dependencies
82
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.0.32 to 0.0.33

2

listen.d.ts

@@ -1,1 +0,1 @@

export async function listen(host: string, port: number, handler: (src:string,req: any) => Promise<any>): Promise<import('https').Server>
export async function listen(host: string, port: number, handler: (src: string, req: any) => Promise<any>, wsHandler?: WebSocket): Promise<import('https').Server>

@@ -18,3 +18,3 @@ const fs = require('fs')

module.exports.listen = async function (host, port, handler) {
module.exports.listen = async function (host, port, handler, wshandler) {
const app = express()

@@ -35,2 +35,8 @@

if (wshandler) {
app.ws('/', function (ws, req) {
wshandler(ws)
})
}
const server = await new Promise((resolve => {

@@ -37,0 +43,0 @@ const svr = https.createServer({

{
"name": "@fangxq/request",
"version": "0.0.32",
"version": "0.0.33",
"description": "",

@@ -5,0 +5,0 @@ "scripts": {

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc