Initialize a project
Create a directory and run This generates the base files:
jelou init:| File | Purpose |
|---|---|
index.ts | Your main function |
jelou.json | Project configuration |
deno.json | SDK import map |
.env | Local environment variables |
Write your function
Replace the contents of
index.ts with a function that looks up customers by phone:index.ts
Deploy to production
Next steps
- Input/output validation — Zod schemas, type coercion, and error format
- Multi-tool functions — group multiple tools in a single deployment with
app()