leopardo
v1.3.0
Published
Fast web framework for Node.js
Downloads
8
Maintainers
Readme
Fast web framework for Node.js.
Quick Start (Example)
const leopardo = require('leopardo')
const app = leopardo()
const port = 3000
app.get('/', (req, res) => {
res.send('Hello World!')
})
app.listen(port, () => {
console.log(`Server listening on http://localhost:${port}`)
})
Installation
This is a Node.js module available through the npm registry. Before installing, download Node.js.
If this is a brand new project, make sure to create a package.json
first with
the npm init
.
Installation is done using the
npm install
command:
$ npm install leopardo
Features
- Robust Routing
- HTTP Helpers
- Built-in Middlewares
- Dynamic Content Engine
- Built-in Commands (MySQL, Changelog)