vkrun
v3.5.0
Published
Vkrun is a Node.js framework for building server-side applications
Maintainers
Readme
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.org
Installation:
NPM
npm install vkrunYARN
yarn add vkrunQuick Start
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");
});