Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@autofleet/super-express

Package Overview
Dependencies
Maintainers
0
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@autofleet/super-express - npm Package Compare versions

Comparing version 2.2.0 to 2.2.1-beta-6c740761.0

src/index.cjs

18

package.json
{
"name": "@autofleet/super-express",
"version": "2.2.0",
"version": "2.2.1-beta-6c740761.0",
"description": "AF Express with built in boilerplate",
"main": "src/index.js",
"main": "src/index.mjs",
"module": "src/index.mjs",
"types": "src/index.d.ts",
"type": "module",

@@ -30,3 +32,15 @@ "author": "Autofleet",

"supertest": "^7.0.0"
},
"exports": {
".": {
"import": {
"default": "./src/index.mjs",
"types": "./src/index.d.ts"
},
"require": {
"default": "./src/index.cjs",
"types": "./src/index.d.cts"
}
}
}
}

4

src/index.d.ts

@@ -56,3 +56,3 @@ import express from 'express';

*/
export interface SuperExpressApp extends express.Application {
export interface SuperExpressApp extends Omit<express.Application, 'listen'> {
/**

@@ -77,3 +77,3 @@ * Original express listen method.

export default function createSuperExpressApp(
options?: Partial<DefaultOptions & express.ApplicationOptions>
options?: Partial<DefaultOptions>
): SuperExpressApp;
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