@tiendq/express

4.16.7 • Public • Published

Express Logo

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 to error
  • 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

List of all contributors

And me, who created this fork, Tien Do

License

MIT

Package Sidebar

Install

npm i @tiendq/express

Weekly Downloads

2

Version

4.16.7

License

MIT

Unpacked Size

200 kB

Total Files

16

Last publish

Collaborators

  • tiendq