UNPKG

create-nxtstart-app

Version:

Nxtstart is an easy to use, interactive CLI tool to bootstrap your next web-based project. The template is aimed at students to get an easy access to web development with example implementations. It is also useful for experts to speed up prototyping.

9 lines (8 loc) 245 B
/** * This endpoint returns a static counter value * @allowedMethods GET * @returns body contains the counter value or an error message if appropriate */ export async function GET() { return Response.json({ value: 42 }, { status: 200 }) }