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

@ellx/framework

Package Overview
Dependencies
Maintainers
2
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ellx/framework - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

2

package.json
{
"name": "@ellx/framework",
"version": "0.0.4",
"version": "0.0.5",
"description": "Ellx full stack framework",

@@ -5,0 +5,0 @@ "type": "module",

@@ -32,3 +32,3 @@ export function bootstrap(modules, { conclureId, resolverId, mainPageId, entryPoint }) {

if (source instanceof Promise) {
source.then(code => node.source = code)
node.source = source.then(code => node.source = code)
.catch(error => node.source = error);

@@ -55,3 +55,3 @@ }

evaluated = new Function(
'{module, exports, process, global, require}',
'module, exports, global, require',
`//# sourceURL=${url}\n${node.source}`

@@ -69,8 +69,8 @@ );

try {
evaluated({
evaluated(
module,
exports: module.exports,
global: globalThis,
require: id => requireModule(id, url)
});
module.exports,
globalThis,
id => requireModule(id, url)
);
}

@@ -77,0 +77,0 @@ catch (e) {

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