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

@node-red/registry

Package Overview
Dependencies
Maintainers
2
Versions
107
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.3.5 to 1.3.6

9

lib/externalModules.js

@@ -73,6 +73,9 @@ // This module handles the management of modules required by the runtime and flows.

}
if (BUILTIN_MODULES.indexOf(module) !== -1) {
return require(module);
const parsedModule = parseModuleName(module);
if (BUILTIN_MODULES.indexOf(parsedModule.module) !== -1) {
return require(parsedModule.module);
}
if (!knownExternalModules[module]) {
if (!knownExternalModules[parsedModule.module]) {
const e = new Error("Module not allowed");

@@ -79,0 +82,0 @@ e.code = "module_not_allowed";

{
"name": "@node-red/registry",
"version": "1.3.5",
"version": "1.3.6",
"license": "Apache-2.0",

@@ -19,7 +19,9 @@ "main": "./lib/index.js",

"dependencies": {
"@node-red/util": "1.3.5",
"@node-red/util": "1.3.6",
"clone": "2.1.2",
"fs-extra": "8.1.0",
"semver": "6.3.0",
"tar": "6.1.0",
"tar": "6.1.2",
"uglify-js": "3.13.3"
}
}
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