Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
This package has been deprecated with the following message: express 2.x series is deprecated
Generated on Oct 1, 2023 via pnpm

express 2.1.0

Sinatra inspired web development framework
Package summary
Share
12
issues
3
critical severity
license
3
3
high severity
meta
3
5
moderate severity
vulnerability
4
meta
1
1
low severity
vulnerability
1
3
licenses
9
MIT
3
N/A
1
BSD-3-Clause
Package created
29 Dec 2010
Version published
24 Mar 2011
Maintainers
2
Total versions
270
License
UNKNOWN

Issues

12

3 critical severity issues

critical
Recommendation: Check the package code and files for license information
via: connect@1.9.2
Recommendation: Check the package code and files for license information
via: express@2.1.0
Recommendation: Check the package code and files for license information
via: connect@1.9.2
Collapse
Expand

3 high severity issues

high
via: connect@1.9.2
via: express@2.1.0
via: connect@1.9.2
Collapse
Expand

5 moderate severity issues

moderate
Recommendation: Upgrade to version 3.11.0 or later
via: express@2.1.0
Recommendation: Upgrade to version 3.11.0 or later
via: express@2.1.0
Recommendation: Upgrade to version 2.14.0 or later
via: connect@1.9.2
Recommendation: Upgrade to version 2.8.2 or later
via: connect@1.9.2
via: express@2.1.0
Collapse
Expand

1 low severity issue

low
Recommendation: Upgrade to version 2.8.1 or later
via: connect@1.9.2
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
Packages
call-bind@1.0.2
function-bind@1.1.1
get-intrinsic@1.2.1
has-proto@1.0.1
has-symbols@1.0.3
has@1.0.3
mime@3.0.0
object-inspect@1.12.3
side-channel@1.0.4

N/A

N/A
Packages
connect@1.9.2
express@2.1.0
formidable@1.0.17

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
Packages
qs@6.11.2
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Dependencies

13
Get CSV
Name Version Size License Type Vulnerabilities
call-bind 1.0.2 5.24 kB MIT prod
connect 1.9.2 75.28 kB UNKNOWN prod 2221
express 2.1.0 24.48 kB UNKNOWN prod 113
formidable 1.0.17 12.04 kB UNKNOWN prod 11
function-bind 1.1.1 6.15 kB MIT prod
get-intrinsic 1.2.1 11.49 kB MIT prod
has-proto 1.0.1 3.3 kB MIT prod
has-symbols 1.0.3 6.9 kB MIT prod
has 1.0.3 1.52 kB MIT prod
mime 3.0.0 18.25 kB MIT prod
object-inspect 1.12.3 25.31 kB MIT prod
qs 6.11.2 52 kB BSD-3-Clause prod
side-channel 1.0.4 5.51 kB MIT prod

Visualizations

Frequently Asked Questions

What does express do?

Express.js is a fast, unopinionated, and minimalist web development framework for Node.js. It's renowned for its robust routing and focus on high performance. Express doesn't enforce a specific ORM or template engine, making it an excellent solution for creating single page applications, websites, hybrids, or public HTTP APIs. This flexibility is further enhanced by support for over 14 template engines via Consolidate.js. In addition, Express provides a suite of HTTP utilities and middleware to help build scalable applications with ease.

How do you use express?

To use Express.js, you'll first need to download and install Node.js versions of 0.10 or higher. You can install Express in your Node.js modules using npm with the npm install express command.

Here's an example of how to create a basic Express application:

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

app.get('/', function (req, res) {
  res.send('Hello World')
})

app.listen(3000)

This creates an Express application that listens on port 3000, and responds with 'Hello World' for requests to the root URL (/) or route.

To quickly get started with Express, you could use the executable express(1) to generate an application skeleton by using the command npm install -g express-generator@4, create the app with express /tmp/foo && cd /tmp/foo, install dependencies with npm install and start the server with npm start.

Where are the express docs?

The official Express documentation, which includes a comprehensive guide to getting started, API references, and a variety of other resources, can be found on the Express.js website. The website repository is available on GitHub for those interested in contributing to the Express documentation. You could also engage with the Express community via Libera Chat IRC, Google Group or use Gitter for support and discussion.