@mesaprotocol/runtime
v0.3.8
Published
Mesa durable financial workflow runtime
Maintainers
Readme
@mesaprotocol/runtime
Durable Execution Engine, REST API Server, Scheduler & Console for Mesa Protocol.
📦 Installation
npm install @mesaprotocol/runtime📖 Usage
import { startServer } from '@mesaprotocol/runtime';
async function main() {
await startServer(3001);
console.log('🚀 Mesa Runtime listening on http://localhost:3001');
}
main();