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

mvcjs

Package Overview
Dependencies
Maintainers
1
Versions
123
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mvcjs - npm Package Compare versions

Comparing version

to
0.1.0-rc11

16

framework/core/request.js

@@ -658,5 +658,5 @@ "use strict";

} else if (!response) {
throw new error.HttpError(500, {}, 'No data to render');
throw new error.HttpError(500, {url: this.url}, 'No data to render');
} else {
throw new error.HttpError(500, {}, 'Invalid response type, string or buffer is required!');
throw new error.HttpError(500, {url: this.url}, 'Invalid response type, string or buffer is required!');
}

@@ -776,7 +776,7 @@

} catch (e) {
throw new error.HttpError(500, {path: controllerToLoad}, 'Missing controller', e);
throw new error.HttpError(500, {path: controllerToLoad, url: this.url}, 'Missing controller', e);
}
if (!Type.assert(Type.FUNCTION, LoadedController)) {
throw new error.HttpError(500, {path: controllerToLoad}, 'Controller must be function type');
throw new error.HttpError(500, {path: controllerToLoad, url: this.url}, 'Controller must be function type');
}

@@ -788,2 +788,3 @@

module: this.module,
url: this.url,
viewsPath: viewsPath

@@ -822,2 +823,3 @@ });

route: {
url: this.url,
controller: this.controller,

@@ -861,7 +863,7 @@ action: this.action,

} catch (e) {
throw new error.HttpError(500, {path: moduleToLoad}, 'Missing module', e);
throw new error.HttpError(500, {path: moduleToLoad, url: this.url}, 'Missing module', e);
}
if (!Type.assert(Type.FUNCTION, LoadedModule)) {
throw new error.HttpError(500, {path: moduleToLoad}, 'Module must be function type');
throw new error.HttpError(500, {path: moduleToLoad, url: this.url}, 'Module must be function type');
}

@@ -872,3 +874,3 @@

if (!(module instanceof ModuleInterface)) {
throw new error.HttpError(500, module, 'Module must be instance of ModuleInterface "core/module"');
throw new error.HttpError(500, {module: module, url: this.url}, 'Module must be instance of ModuleInterface "core/module"');
}

@@ -875,0 +877,0 @@

@@ -5,3 +5,3 @@ {

"description": "Powerful lightweight mvc framework for nodejs",
"version": "0.1.0-rc10",
"version": "0.1.0-rc11",
"dependencies": {

@@ -8,0 +8,0 @@ "mongoose": "3.8.x",