Simplyfing the development of applications with support for JavaScript and TypeScript. Vkrun also provides a robust, opinion-free, and scalable solution for your needs.
VkrunJs documentation, visit vkrunjs.com
npm install vkrun
yarn add vkrun
import v from "vkrun";
const vkrun = v.App();
vkrun.get("/", (req: v.Request, res: v.Request) => {
res.status(200).send("Hello World!");
});
vkrun.server().listen(3000, () => {
console.log("Vkrun started on port 3000");
});