Registry / web-framework / sae-framework

sae-framework

JSON →
library0.20.24jsnpmunverified

SAE Framework is a microservices API engine for Node.js. Current version 0.20.24 is in early development with incomplete documentation and unstable APIs. Release cadence is irregular. Differentiators aim to provide lightweight, opinionated microservice scaffolding, but the project lacks maturity. Not recommended for production use as core features are still marked as TODO, including auth context cleanup and field filtering.

npm install sae-framework
INSTALL
IMPORT
SIG · SAE-FRAMEWORK
S
sae-framework
web-frameworkjavascriptv0.20.24
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

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

SAE
const SAE = require('sae-framework');
CJS only; no ESM or named exports.

Creates a SAE app server on port 3000. Note: may have undefined behavior due to early-stage code.

const SAE = require('sae-framework'); const app = new SAE(); app.set('port', 3000); app.start(() => { console.log('Server running on port 3000'); });
Debug
Known issues
breakingAPI is unstable and not versioned; major breaking changes can occur in patch releases.
fix
Do not use in production; pin to exact version if experimenting.
affects: >=0.0.0
deprecatedThe library is effectively abandoned (no commits since 2019, incomplete features).
fix
Use alternative frameworks like Express, Fastify, or Koa.
affects: >=0.0.0
gotchaAuth context is not cleared between requests, potentially leaking user data.
fix
If using, manually clear auth context per request.
affects: >=0.0.0
Errors
Common errors & fixes
Cannot find module 'sae-framework'
Package not installed or missing dependencies.
fix
Run: npm install sae-framework
SAE is not a constructor
Incorrect import (ES6 import on CJS-only package).
fix
Use const SAE = require('sae-framework');
Upgrade
Version history
0.20.24latest on npm
Audit
Dependencies

No dependency data recorded yet.

Agent activity
5 hits · last 30 days
node
4
Resources
sae-framework — npm install sae-framework · libregistry