1 रिपॉजिटरी
Converts JavaScript source code into optimized bytecode outside the execution sandbox to improve runtime performance.
Distinct from Script Compilation: Distinct from general Script Compilation: focuses on V8-specific bytecode pre-compilation for isolated contexts rather than general executable generation.
Explore 1 awesome GitHub repository matching development tools & productivity · JavaScript Bytecode Pre-compilation. Refine with filters or upvote what's useful.
Isolated-vm is a library for creating secure, memory-isolated JavaScript execution environments within Node.js. It functions as a manager for the underlying engine, allowing developers to instantiate multiple independent execution contexts that share no memory or global state. This architecture is designed to support the execution of untrusted third-party code while preventing interference with the main application process. The project distinguishes itself by enforcing strict resource constraints, including memory limits and CPU execution timeouts, to ensure host system stability. It provides
Provides pre-compilation of JavaScript into bytecode to enhance execution speed within isolated environments.