Skip to main content
Parmana ships as three consumable surfaces: the Runtime (the monorepo you run yourself), the TypeScript SDK, and the Python SDK. Which one you install depends on what you’re building.
Clone the parmana repository and install workspace dependencies. Node.js >=22 is required.
git clone https://github.com/pavancharak/parmana.git
cd parmana
npm install
Build all workspace packages:
npm run build
Run the test suite:
npm test
Start the API server in development mode:
npm run dev
This runs packages/api/src/server.ts, which exposes the REST API described in the API reference.

Requirements

ComponentRequirement
Runtime (monorepo)Node.js >=22, npm workspaces
TypeScript SDKNode.js or a modern browser runtime with fetch
Python SDKPython 3.9+

Next step

Continue to the Quickstart to execute your first Business Transaction.