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-rc15

12

framework/core/controller.js

@@ -316,2 +316,14 @@ "use strict";

* @author Igor Ivanovic
* @method Controller#getRequestId
*
* @description
* Get request id
* @return {string}
*/
getRequestId: function Controller_getRequestId() {
return this.__config__.id;
},
/**
* @since 0.0.1
* @author Igor Ivanovic
* @method Controller#getControllerName

@@ -318,0 +330,0 @@ *

9

framework/core/request.js

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

onEnd: function Request_onEnd(callback) {
this.request.on('destory', callback);
this.request.once('destory', callback);
},

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

function destroy() {
if (this.isRendered) {
this.request.emit('destory');
}
this.request.emit('destory');
}

@@ -807,2 +805,3 @@ },

url: this.url,
id: this.id,
viewsPath: viewsPath

@@ -848,2 +847,4 @@ });

this.onEnd(controller.destroy.bind(controller));
return promise;

@@ -850,0 +851,0 @@ },

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

"description": "Powerful lightweight mvc framework for nodejs",
"version": "0.1.0-rc13",
"version": "0.1.0-rc15",
"dependencies": {

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