This document describes the environment requirements for using this framework, including the Node.js environment and browser compatibility.
Requires Node.js version >= 24.
Versions below 24 are not supported; installing dependencies will fail.
The compatibility strategy is divided into two modes:
import.meta via es-module-shims.| Browser | Minimum Version |
|---|---|
| Chrome | >= 64 |
| Edge | >= 79 |
| Firefox | >= 67 |
| Safari | >= 11.1 |
Data source: Can I Use (Dynamic Import and import.meta), retrieved November 2025.
To enable compatibility mode, you need to add the es-module-shims script to your HTML. It polyfills features like dynamic import and import.meta.
<script async src="https://unpkg.com/es-module-shims/dist/es-module-shims.js"></script>| Browser | Minimum Version |
|---|---|
| Chrome | >= 89 |
| Edge | >= 89 |
| Firefox | >= 108 |
| Safari | >= 16.4 |
Data source: Can I Use (Import Maps), retrieved November 2025.