4.16.5 • Published 5 years ago

express-tweak v4.16.5

Weekly downloads
2
License
MIT
Repository
github
Last release
5 years ago

Express Logo

Refactored Express - a fast, unopinionated, minimalist web framework for node.

NPM Version NPM Downloads Linux Build Windows Build Test Coverage

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

List of all contributors

And me, who created this fork Tien Do

License

MIT