Skip to content

vkrunjs/vkrun

Repository files navigation

Vkrun logo

Vkrun


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

Simplyfing the development of applications with support for JavaScript and TypeScript. Vkrun also provides a robust, opinion-free, and scalable solution for your needs.

Quick Start

Installation command:

npm install vkrun
import v from 'vkrun'

const app = v.App()
const router = v.Router()

router.get('/', (req, res) => {
  res.setHeader('Content-Type', 'text/plain')
  res.status(200).end('Hello World!')
})

app.use(router)

app.server().listen(3000, () => {
  console.log('Vkrun started on port 3000')
})

Created by Mario Elvio npm stars


Content

Installation

If you need a step-by-step guide on how to install and use Vkrun, use the Installation Guide

NPM
npm install vkrun
YARN
yarn add vkrun

Example projects

If you are looking for practical examples of how to use our framework in different scenarios, just click the link below:

Example Projects

Feel free to browse the different designs and try out what best suits your needs. If you have any questions or suggestions about the examples, do not hesitate to contact us by opening a new Issue.

Security Issues

If you discover a security vulnerability in Express, please see Security Policies and Procedures.

Contributing

The Vkrun project appreciates all constructive contributions. Contributions come in many forms, from code for bug fixes and enhancements to additions and corrections to documentation, additional tests, triaging of received pull requests and issues, and much more!

Refer to the Contribution Guide for more technical details on how to contribute.

Contributors

The original author of Vkrun and current lead maintainer is Mario Elvio

License

MIT