VkrunJS is a Node.js framework for building server-side applications.
Simplyfing the development of applications with support for JavaScript and TypeScript. VkrunJS also provides a robust, opinion-free, and scalable solution for your needs.
Installation
NPM
npm install vkrun
YARN
yarn add vkrun
Quick Start
import v from "vkrun"
const vkrun = v.App()
vkrun.get("/", (req: v.Request, res: v.Response) => {
res.status(200).send("Hello World!")
})
vkrun.server().listen(3000, () => {
console.log("VkrunJS started on port 3000")
})