@tiendq/express
v4.16.7
Published
Tweaked version of Express - a fast, unopinionated, minimalist web framework
Downloads
3
Maintainers
Readme
Tweaked version of Express - a fast, unopinionated, minimalist web framework for NodeJS.
const express = require('@tiendq/express');
let app = express();
app.get('/', (request, response) => {
response.send('Hello World');
});
app.listen(8000);
What're changes/differences with original Express?
- Upgraded to ES6 syntax
- Support NodeJS v12.x and later
- Make code more expressive with ES6, mostly renamed variables e.g.
err
toerror
- Remove all deprecated features, no backward compatibility with version 3.x
See history for details.
Installation
This is a NodeJS module available through the npm registry.
Before installing, download and install NodeJS. NodeJS 12.x or higher is required.
Installation is done using the yarn
:
$ yarn add @tiendq/express
Follow our installing guide for more information.
Tests
To run the test suite:
$ yarn install
$ yarn test
People
The original author of Express is TJ Holowaychuk
The current lead maintainer is Douglas Christopher Wilson
And me, who created this fork, Tien Do