1.3.0 • Published 1 year ago

leopardo v1.3.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

Leopardo Logo

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)

Docs

Author

Alejandrocsdev

License

MIT

1.2.0

1 year ago

1.1.0

1 year ago

1.3.0

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago