Registry / web-framework / exodus-framework

exodus-framework

JSON →
library2.2.10921jsnpmunverified

Exodus Framework is a JavaScript/TypeScript framework designed for building scalable applications. The current stable version is 2.2.10921. Release cadence is unknown but frequent updates suggest active development. Provides TypeScript types. Key differentiators include a modular architecture and built-in utilities, though documentation is lacking.

npm install exodus-framework
INSTALL
IMPORT
SIG · EXODUS-FRAMEWORK
E
exodus-framework
web-frameworkjavascriptv2.2.10921
Install
Import
Disk
Pass rate
0/ 6
Env Coverage0 / 6
glibc
1822
musl
1822
Install & Compatibility
Where this runs
tested against v? · npm install
Install × environment matrix
Each cell = how many times install + import succeeded across repeated harness runs. Partial = flaky.
glibc = Debian/Ubuntu slim · musl = Alpine Linux
musl
node 18226 runs
build_error
glibc
node 18226 runs
build_error
Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

Exodus
import { Exodus } from 'exodus-framework'
const Exodus = require('exodus-framework')
Package is ESM-only; CommonJS require is not supported.
createApp
import { createApp } from 'exodus-framework'
import createApp from 'exodus-framework'
createApp is a named export, not a default one.
Config
import type { Config } from 'exodus-framework'
import { Config } from 'exodus-framework'
Config is a TypeScript type; use type import to avoid runtime overhead.

Demonstrates creating an app with a component and starting the server.

import { Exodus, createApp } from 'exodus-framework'; const app = createApp(); app.use(Exodus.component('HelloWorld', { message: 'Hello' })); app.start({ port: 3000 }).then(() => console.log('Server running on port 3000'));
Debug
Known issues
breakingExodus v2.x dropped support for Node.js 10 and below. Use v2 with Node 12+.
fix
Upgrade Node.js to version 12 or later.
affects: >=2.0.0
deprecatedThe legacy module system (exodus-legacy) is deprecated in v2.x. Use the new import system.
fix
Replace `import { legacy } from 'exodus-framework'` with the new APIs.
affects: >=2.0.0 <3.0.0
gotchaTypeScript types are exported but may not cover all APIs for v2.2.x. Check type definitions for completeness.
fix
If encountering type errors, use `@ts-ignore` or contribute to type definitions.
affects: >=2.2.0
Errors
Common errors & fixes
Error: Cannot find module 'exodus-framework'
Package not installed or import path misspelled.
fix
Run `npm install exodus-framework` and check import: `import { Exodus } from 'exodus-framework'`.
TypeError: (0 , _exodus_framework.createApp) is not a function
Default import instead of named import for createApp.
fix
Change `import createApp from 'exodus-framework'` to `import { createApp } from 'exodus-framework'`.
Upgrade
Version history
2.2.10921latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
3 hits · last 30 days
node
2
Resources
exodus-framework — npm install exodus-framework · libregistry