You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

mockttp

Package Overview
Dependencies
Maintainers
1
Versions
122
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.14.3 to 0.14.4

2

dist/client/mockttp-client.js

@@ -301,3 +301,3 @@ "use strict";

body,
timingEvents
${this.typeHasField('Response', 'timingEvents') ? 'timingEvents' : ''}
}

@@ -304,0 +304,0 @@ }`

@@ -5,2 +5,3 @@ /**

/// <reference path="../../custom-typings/asynciterator.d.ts" />
import * as cors from 'cors';
import { MockttpOptions } from '../mockttp';

@@ -10,2 +11,3 @@ export interface StandaloneServerOptions {

serverDefaults?: MockttpOptions;
corsOptions?: cors.CorsOptions;
}

@@ -12,0 +14,0 @@ export declare class MockttpStandalone {

@@ -43,3 +43,17 @@ "use strict";

console.log('Standalone server started in debug mode');
this.app.use(cors());
this.app.use(cors(options.corsOptions));
this.app.use((req, res, next) => {
const origin = req.headers['origin'];
// This will have been set (or intentionally not set), by the CORS middleware
const allowedOrigin = res.getHeader('Access-Control-Allow-Origin');
// If origin is set (null or an origin) but was not accepted by the CORS options
// Note that if no options.cors is provided, allowedOrigin is always *.
if (origin !== undefined && allowedOrigin !== '*' && allowedOrigin !== origin) {
// Don't process the request: error out & skip the lot (to avoid CSRF)
res.status(403).send('CORS request sent by unacceptable origin');
}
else {
next();
}
});
this.app.use(bodyParser.json());

@@ -75,3 +89,4 @@ this.app.post('/start', (req, res) => __awaiter(this, void 0, void 0, function* () {

res.status(404).send('Unknown mock server');
throw new Error(`Request for unknown mock server port: ${req.params.port}`);
console.error(`Request for unknown mock server port: ${req.params.port}`);
return;
}

@@ -78,0 +93,0 @@ this.routers[req.params.port](req, res, next);

{
"name": "mockttp",
"version": "0.14.3",
"version": "0.14.4",
"description": "Mock HTTP server for testing HTTP clients and stubbing webservices",

@@ -59,3 +59,2 @@ "main": "dist/main.js",

"@types/common-tags": "^1.4.0",
"@types/cors": "^2.8.1",
"@types/graphql": "^14.0.2",

@@ -110,2 +109,3 @@ "@types/lodash": "^4.14.37",

"dependencies": {
"@types/cors": "^2.8.1",
"@types/express": "^4.0.33",

@@ -112,0 +112,0 @@ "@types/node": "^10.12.9",

@@ -315,3 +315,3 @@ /**

body,
timingEvents
${this.typeHasField('Response', 'timingEvents') ? 'timingEvents' : ''}
}

@@ -318,0 +318,0 @@ }`

@@ -29,3 +29,3 @@ /**

import { MockttpOptions } from '../mockttp';
import { Duplex, PassThrough } from 'stream';
import { Duplex } from 'stream';

@@ -35,2 +35,3 @@ export interface StandaloneServerOptions {

serverDefaults?: MockttpOptions;
corsOptions?: cors.CorsOptions;
}

@@ -49,3 +50,17 @@

this.app.use(cors());
this.app.use(cors(options.corsOptions));
this.app.use((req, res, next) => {
const origin = req.headers['origin'];
// This will have been set (or intentionally not set), by the CORS middleware
const allowedOrigin = res.getHeader('Access-Control-Allow-Origin');
// If origin is set (null or an origin) but was not accepted by the CORS options
// Note that if no options.cors is provided, allowedOrigin is always *.
if (origin !== undefined && allowedOrigin !== '*' && allowedOrigin !== origin) {
// Don't process the request: error out & skip the lot (to avoid CSRF)
res.status(403).send('CORS request sent by unacceptable origin');
} else {
next();
}
});
this.app.use(bodyParser.json());

@@ -90,3 +105,4 @@

res.status(404).send('Unknown mock server');
throw new Error(`Request for unknown mock server port: ${req.params.port}`);
console.error(`Request for unknown mock server port: ${req.params.port}`);
return;
}

@@ -93,0 +109,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc