expediate

Fast and simple, minimalist web framework

Usage no npm install needed!

<script type="module">
  import expediate from 'https://cdn.skypack.dev/expediate';
</script>

README

Expediate

This small library serve as a router facility for a web server. For compatibility reason it keep the exact same interface as express.js, however it doesn't intent to provide all the features.

NPM Version NPM Downloads Linux Build Windows Build Test Coverage

const expediate = require('expediate')
const app = expediate()

app.get('/', function (req, res) {
  res.send('Hello World')
})

app.listen(3000)

Installation

This is a Node.js module available through the npm registry.

Before installing, download and install Node.js.

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 expediate

License

MIT