@pumped-fn/core-next
v0.5.94
Published
Enhanced function utilities for TypeScript
Downloads
25
Readme
@pumped-fn/core-next
Enhanced function utilities for TypeScript
Installation
npm install @pumped-fn/core-nextQuick Start
import { provide, derive, createScope } from '@pumped-fn/core-next';
const config = provide(() => ({ port: 3000 }));
const server = derive([config], ([cfg]) => `Server on ${cfg.port}`);
const scope = createScope();
const result = scope.resolve(server); // "Server on 3000"Documentation
📚 Complete Documentation - Expert-level documentation for context engineering and component development
The comprehensive documentation includes:
- Core Library Reference - Graph-based dependency resolution system
- Business Logic Flows - Structured business logic with validation
- Metadata System - Typed metadata decoration patterns
- Component Creation Guide - Reusable, configurable component patterns
- Plugin Development - Extending scope and flow functionality
License
MIT
