Installation
Standard Installation
To install the primary available utilities library into your project, run:
npm install @doyzfin/common Modular Packages (Coming Soon)
Other enterprise modules are in active development. When released, they can be installed separately:
1. Identity & Session Setup (Soon)
npm install @doyzfin/auth 2. Database transaction pools (Soon)
npm install @doyzfin/db 3. Structured Observability Loggers (Soon)
npm install @doyzfin/logger 4. Schema Environmental Configs (Soon)
npm install @doyzfin/config Compiler Prerequisites
ForgeKit leverages TypeScript v5 characteristics. Verify that your tsconfig.json extends these properties to ensure correct compilation:
{
"compilerOptions": {
"moduleResolution": "bundler",
"target": "ES2022",
"strict": true,
"esModuleInterop": true
}
}