vkrun
v2.1.1
Published
Vkrun is a Node.js framework for building server-side applications
Downloads
394
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.com
Installation:
NPM
npm install vkrun
YARN
yarn add vkrun
Quick Start
import v from 'vkrun'
const app = v.App()
app.get('/', (req, res) => {
res.setHeader('Content-Type', 'text/plain')
res.status(200).end('Hello World!')
})
app.server().listen(3000, () => {
console.log('Vkrun started on port 3000')
})