Cute Express is a custom implementation of the popular Node.js web application framework Express js.
Fast, unopinionated, minimalist web framework for Node.js.
const cuteExpress = require('cute-express')
const app = cuteExpress()
app.get('/', function (req, res) {
res.send('Hello World')
})
app.listen(3000)
This is a Node.js module available through the npm registry.
Before installing, download and install Node.js. Node.js 0.10 or higher is required.
If this is a brand new project, make sure to create a package.json first with the npm init
command.
Installation is done using the npm install
command:
$ npm install cute-express
Follow our installing guide for more information.
-
Robust routing
-
HTTP helpers (redirection, response, request etc)
-
Content negotiation
-
Executable for generating applications quickly