Skip to content

Alejandrocsdev/leopardo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published