express

WebJar for express

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

express
Последняя версия

Последняя версия

5.0.0-alpha.8
Дата

Дата

Тип

Тип

jar
Описание

Описание

express
WebJar for express
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

https://github.com/expressjs/express

Скачать express

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/express/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>express</artifactId>
    <version>5.0.0-alpha.8</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/express/
implementation 'org.webjars.npm:express:5.0.0-alpha.8'
// https://jarcasting.com/artifacts/org.webjars.npm/express/
implementation ("org.webjars.npm:express:5.0.0-alpha.8")
'org.webjars.npm:express:jar:5.0.0-alpha.8'
<dependency org="org.webjars.npm" name="express" rev="5.0.0-alpha.8">
  <artifact name="express" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='express', version='5.0.0-alpha.8')
)
libraryDependencies += "org.webjars.npm" % "express" % "5.0.0-alpha.8"
[org.webjars.npm/express "5.0.0-alpha.8"]

Зависимости

compile (31)

Идентификатор библиотеки Тип Версия
org.webjars.npm : setprototypeof jar [1.1.1]
org.webjars.npm : accepts jar [1.3.7,1.4)
org.webjars.npm : on-finished jar [2.3.0,2.4)
org.webjars.npm : type-is jar [1.6.18,1.7)
org.webjars.npm : finalhandler jar [1.1.2,1.2)
org.webjars.npm : depd jar [1.1.2,1.2)
org.webjars.npm : safe-buffer jar [5.1.2]
org.webjars.npm : debug jar [3.1.0]
org.webjars.npm : merge-descriptors jar [1.0.1]
org.webjars.npm : cookie jar [0.4.0]
org.webjars.npm : utils-merge jar [1.0.1]
org.webjars.npm : array-flatten jar [2.1.1]
org.webjars.npm : proxy-addr jar [2.0.5,2.1)
org.webjars.npm : serve-static jar [1.14.1]
org.webjars.npm : vary jar [1.1.2,1.2)
org.webjars.npm : content-type jar [1.0.4,1.1)
org.webjars.npm : body-parser jar [1.19.0]
org.webjars.npm : content-disposition jar [0.5.3]
org.webjars.npm : qs jar [6.7.0]
org.webjars.npm : etag jar [1.8.1,1.9)
org.webjars.npm : parseurl jar [1.3.3,1.4)
org.webjars.npm : statuses jar [1.5.0,1.6)
org.webjars.npm : router jar [2.0.0-alpha.1]
org.webjars.npm : methods jar [1.1.2,1.2)
org.webjars.npm : range-parser jar [1.2.1,1.3)
org.webjars.npm : path-is-absolute jar [1.0.1]
org.webjars.npm : fresh jar [0.5.2]
org.webjars.npm : escape-html jar [1.0.3,1.1)
org.webjars.npm : send jar [0.17.1]
org.webjars.npm : encodeurl jar [1.0.2,1.1)
org.webjars.npm : cookie-signature jar [1.0.6]

Модули Проекта

Данный проект не имеет модулей.

Express Logo

Fast, unopinionated, minimalist web framework for node.

NPM Version NPM Downloads Linux Build Windows Build Test Coverage

const express = require('express')
const app = express()

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. Node.js 0.10 or higher is required.

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 express

Follow our installing guide for more information.

Features

  • Robust routing
  • Focus on high performance
  • Super-high test coverage
  • HTTP helpers (redirection, caching, etc)
  • View system supporting 14+ template engines
  • Content negotiation
  • Executable for generating applications quickly

Docs & Community

PROTIP Be sure to read Migrating from 3.x to 4.x as well as New features in 4.x.

Security Issues

If you discover a security vulnerability in Express, please see Security Policies and Procedures.

Quick Start

The quickest way to get started with express is to utilize the executable express(1) to generate an application as shown below:

Install the executable. The executable's major version will match Express's:

$ npm install -g express-generator@4

Create the app:

$ express /tmp/foo && cd /tmp/foo

Install dependencies:

$ npm install

Start the server:

$ npm start

View the website at: http://localhost:3000

Philosophy

The Express philosophy is to provide small, robust tooling for HTTP servers, making it a great solution for single page applications, websites, hybrids, or public HTTP APIs.

Express does not force you to use any specific ORM or template engine. With support for over 14 template engines via Consolidate.js, you can quickly craft your perfect framework.

Examples

To view the examples, clone the Express repo and install the dependencies:

$ git clone git://github.com/expressjs/express.git --depth 1
$ cd express
$ npm install

Then run whichever example you want:

$ node examples/content-negotiation

Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test

Contributing

Contributing Guide

People

The original author of Express is TJ Holowaychuk

The current lead maintainer is Douglas Christopher Wilson

List of all contributors

License

MIT

org.webjars.npm
Express.js: the fast, unopinionated, minimalist web framework for node

Версии библиотеки

Версия
5.0.0-alpha.8
5.0.0-alpha.7
5.0.0-alpha.6
5.0.0-alpha.2
4.16.4
4.16.2
4.15.3
4.14.1
4.14.0
4.13.4
4.11.0
4.6.1
3.4.8
2.5.0