README
Refactored Express - a fast, unopinionated, minimalist web framework for node.
[![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Linux Build][travis-image]][travis-url] [![Windows Build][appveyor-image]][appveyor-url] [![Test Coverage][coveralls-image]][coveralls-url]
const express = require('express-next');
let app = express();
app.get('/', (request, response) => {
response.send('Hello World');
});
app.listen(8000);
What're changes/differences with original Express?
- Updated to ES6 syntax
- Support NodeJS v12.x and later
Installation
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.
Installation is done using the
npm install
command:
$ yarn add express-next
Follow our installing guide for more information.
Tests
To run the test suite, first install the dependencies, then run yarn test
:
$ 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