vkrun
TypeScript icon, indicating that this package has built-in type declarations

3.1.1 • Public • Published
Vkrun logo

Vkrun is a Node.js framework for building server-side applications.

Created by Mario Elvio npm stars

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

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.Request) => {
  res.status(200).send("Hello World!");
});

vkrun.server().listen(3000, () => {
  console.log("Vkrun started on port 3000");
});

Package Sidebar

Install

npm i vkrun

Weekly Downloads

20

Version

3.1.1

License

MIT

Unpacked Size

1.08 MB

Total Files

584

Last publish

Collaborators

  • vkrunjs