🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@eggjs/utils

Package Overview
Dependencies
Maintainers
9
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@eggjs/utils

Utils for all egg projects

beta
Source
npmnpm
Version
5.0.2-beta.17
Version published
Weekly downloads
21K
28.54%
Maintainers
9
Weekly downloads
 
Created
Source

@eggjs/utils

NPM version npm download Node.js Version

Utils for all egg projects.

Installation

npm i @eggjs/utils

API

getPlugins(options)

  • {String} baseDir - the current directory of application
  • {String} framework - the directory of framework
  • {String} env - egg environment

getLoadUnits(options)

  • {String} baseDir - the current directory of application
  • {String} framework - the directory of framework
  • {String} env - egg environment

getConfig(options)

  • {String} baseDir - the current directory of application
  • {String} framework - the directory of framework
  • {String} env - egg environment

getFrameworkPath(options)

  • {String} baseDir - the current directory of application
  • {String} framework - the directory of framework

setBundleModuleLoader(loader)

Register a module loader hook for bundled Egg apps. The hook runs before the normal importModule() resolution path.

  • {Function | undefined} loader - a synchronous function that receives the original filepath argument passed to importModule() after POSIX separator normalization, or a virtual specifier. It does not receive the resolved absolute file path from importResolve(). Return undefined to fall back to the normal import path.

The bundle loader is stored on globalThis, so bundled and external copies of @eggjs/utils share the same loader. Non-undefined results follow the same default export unwrapping rules as importModule(), including importDefaultOnly.

Bundle / snapshot module-loading hooks

importModule() resolves a module through the following hooks, in order. The first one that produces a value wins; otherwise it falls back to the native import() / require() path:

  • globalThis.__EGG_BUNDLE_MODULE_LOADER__ — set via setBundleModuleLoader(). Looks up a module already inlined into the bundle (typically a static bundle map emitted by egg-bundler). Runs before on-disk resolution and receives the POSIX-normalized importModule() filepath or a virtual specifier. Return undefined to fall through.
  • Snapshot module loader — set via setSnapshotModuleLoader(). This is a module-local hook (not a globalThis global) used by the V8 snapshot entry generator to serve pre-bundled modules synchronously, keyed by the resolved path. Once registered it handles every load that reaches it, so the importer below is not consulted while it is active.
  • globalThis.__EGG_MODULE_IMPORTER__ — an async (or sync, since the value is awaited) importer that receives the resolved file path (the importResolve() result, with OS-native separators — not normalized). When set, and the two hooks above did not resolve the module, it replaces the native await import(filePath).

The bundle loader and importer globals are typed in @eggjs/typings (BundleModuleLoader / ModuleImporter); import @eggjs/typings/global to pick up the declare global augmentation. These hooks are the contract that egg-bundler's generated entry relies on. @eggjs/core's ManifestLoaderFS consults __EGG_BUNDLE_MODULE_LOADER__ directly; its importer/native fallback is reached through @eggjs/loader-fs, which calls back into importModule(). The tegg loader (LoaderUtil.loadFile) consults both globals directly, passing the loader filepath with separators normalized to POSIX.

__EGG_MODULE_IMPORTER__ has two main uses:

  • Bundler-based test runners (e.g. Vitest): route module loading through the runner's own module graph so the loader and the test file share a single module instance (otherwise ctx.getEggObject(ClassRef) fails with "can not get proto").
  • V8 startup-snapshot restore: the deserialized main function runs without a host dynamic-import callback, so native import() throws. The snapshot entry installs a synchronous require()-based importer (createRequire() over the bundle output dir); require() can load ESM on Node >= 22, so modules resolve without dynamic import.

License

MIT

Contributors

Contributors

Made with contributors-img.

Keywords

egg

FAQs

Package last updated on 28 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts