Socket
Socket
Sign inDemoInstall

ifnode

Package Overview
Dependencies
45
Maintainers
1
Versions
56
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.1 to 1.1.2

.idea/atlassian-ide-plugin.xml

9

core/application/controllers.js

@@ -98,4 +98,5 @@ 'use strict';

name = cut_start_slash(path_without_extension),
config = {},
config = {};
controller;

@@ -113,3 +114,7 @@ if(name !== '') {

self._controllers[autoformed_controller_config.name]._compile();
controller = self._controllers[autoformed_controller_config.name];
if(controller) {
controller._compile();
}
});

@@ -116,0 +121,0 @@ }

@@ -195,6 +195,6 @@ 'use strict';

initialize_additional_site_config(default_config);
return helper.deep_freeze(default_config);
return default_config;
}
config = require(options.config_path);
config = _.cloneDeep(require(options.config_path));

@@ -208,3 +208,3 @@ initialize_properties_config(config, default_config, options.project_folder);

return helper.deep_freeze(config);
return config;
};

@@ -211,0 +211,0 @@

@@ -104,3 +104,7 @@ 'use strict';

callback(request, response, next_handler, next_route);
try {
callback(request, response, next_handler, next_route);
} catch(err) {
next_route(err);
}
});

@@ -107,0 +111,0 @@ });

{
"name": "ifnode",
"version": "1.1.1",
"version": "1.1.2",
"description": "Node.js MVC Framework",

@@ -20,16 +20,15 @@ "main": "index.js",

"dependencies": {
"express": "4.x.x",
"sprintf": "0.x.x",
"diread": "latest",
"async": "0.x.x",
"lodash": "3.x.x",
"node-uuid": "1.x.x",
"debug": "latest"
"express": "4.13.3",
"sprintf": "0.1.5",
"diread": "0.0.3",
"async": "0.9.0",
"lodash": "3.7.0",
"node-uuid": "1.4.3",
"debug": "2.2.0"
},
"devDependencies": {
"supertest": "1.x.x",
"mocha": "2.x.x",
"should": "6.x.x"
"supertest": "1.1.x",
"mocha": "2.2.x",
"should": "6.0.x"
}
}

@@ -9,3 +9,3 @@ 'use strict';

key = keys[i];
this[key] = keys[key];
this[key] = config[key];
}

@@ -12,0 +12,0 @@ };

@@ -27,3 +27,3 @@ ____ _________

## Docs
## Documentation

@@ -30,0 +30,0 @@ Now can read wiki [documentation](https://github.com/ilfroloff/ifnode/wiki/docs). Also can check [examples](https://github.com/ifnode/examples).

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc