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

censeo

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

censeo - npm Package Compare versions

Comparing version 0.4.3 to 0.4.4

13

lib/server.js

@@ -9,3 +9,14 @@ (function() {

}
return require(path);
try {
return require(path);
} catch (e) {
if (e.code === "MODULE_NOT_FOUND") {
throw {
message: "Censeo could not find the file '" + path + "'",
code: e.code
};
} else {
throw e;
}
}
};

@@ -12,0 +23,0 @@ pogoWrappers = function() {

2

package.json
{
"name": "censeo",
"version": "0.4.3",
"version": "0.4.4",
"description": "Run arbitrary JavaScript or PogoScript on a server",

@@ -5,0 +5,0 @@ "author": "Derek Ekins <derek@spathi.com>",

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