@runfabric/core
v0.1.1
Published
Core contracts and shared types for runfabric
Maintainers
Readme
@runfabric/core
Core contracts, types, enums, provider interfaces, and state backend primitives for RunFabric.
Install
npm install @runfabric/coreWhat it provides
ProjectConfig, trigger/resource/state schema typesProviderAdapterand capability/credential contracts- Provider IDs, enums, and portability primitives
- State backend abstractions (
local,postgres,s3,gcs,azblob)
Usage
import type { UniversalHandler } from "@runfabric/core";
export const handler: UniversalHandler = async () => ({
status: 200,
headers: { "content-type": "application/json" },
body: JSON.stringify({ ok: true })
});See repository docs for end-to-end usage with the CLI and providers.
