Developer tool
Write a function. Invoke it.
That is the whole tool.
nvoke runs small Node.js functions with a real HTTP endpoint. No YAML, no cold-start rituals, no dashboard tour.
hello.js
export default async function (req) {
const { name = "world" } = req.body;
return { message: `Hello, ${name}!` };
}POST /api/invoke/hello
200 OK · 47ms
{ "message": "Hello, world!" }
Write it in your browser.
Monaco editor, syntax highlighting, no local setup.
Get a real endpoint.
Every function gets an HTTPS URL and an API key.
Runs in 30 seconds or less.
Hard timeout, 128 MB heap, no surprises.
Built for people who would rather ship than configure.