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

microframework

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

microframework - npm Package Compare versions

Comparing version 0.5.1 to 0.5.2

11

ModulesRegistry.js

@@ -98,3 +98,12 @@ "use strict";

.catch(function (err) {
return _this.shutdownAllModules().then(function () { throw err; });
// we need to catch any kind of error in the shutdown and provide original error instead,
// because otherwise if shutdown will fail user will not know about orignal issue
try {
return _this.shutdownAllModules()
.then(function () { throw err; })
.catch(function () { throw err; });
}
catch (errorInShutdown) {
throw err;
}
});

@@ -101,0 +110,0 @@ };

2

package.json
{
"name": "microframework",
"private": false,
"version": "0.5.1",
"version": "0.5.2",
"description": "Micro framework is a bundle of express.js, mongodb ODM, validator, dependancy injection framework and restful controllers for your apps using Typescript",

@@ -6,0 +6,0 @@ "license": "Apache-2.0",

Sorry, the diff of this file is not supported yet

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