Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
This package has been deprecated with the following message: express 2.x series is deprecated
Generated on Apr 8, 2024 via pnpm

express 2.1.0

Sinatra inspired web development framework
Package summary
Share
14
issues
3
critical severity
license
3
3
high severity
meta
3
7
moderate severity
vulnerability
6
meta
1
1
low severity
vulnerability
1
3
licenses
15
MIT
3
N/A
1
BSD-3-Clause
Package created
29 Dec 2010
Version published
24 Mar 2011
Maintainers
2
Total deps
19
Direct deps
3
License
UNKNOWN

Issues

14

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

7 moderate severity issues

moderate
Recommendation: Upgrade to version 3.11.0 or later
via: express@2.1.0
Recommendation: Upgrade to version 4.19.2 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
Recommendation: Upgrade to version 4.19.2 or later
via: express@2.1.0
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
15 Packages, Including:
call-bind@1.0.7
define-data-property@1.1.4
es-define-property@1.0.0
es-errors@1.3.0
function-bind@1.1.2
get-intrinsic@1.2.4
gopd@1.0.1
has-property-descriptors@1.0.2
has-proto@1.0.3
has-symbols@1.0.3
hasown@2.0.2
mime@4.0.1
object-inspect@1.13.1
set-function-length@1.2.2
side-channel@1.0.6

N/A

N/A
3 Packages, Including:
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
1 Packages, Including:
qs@6.12.0
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.

Direct Dependencies

3
All Dependencies CSV
β“˜ This is a list of express 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
connect1.9.275.28 kBUNKNOWN
prod
2
2
2
1
mime4.0.119.92 kBMIT
prod
qs6.12.0239.38 kBBSD-3-Clause
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.