nvoke

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!" }

Built for people who would rather ship than configure.