Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on May 18, 2024 via pnpm

next 14.1.0

The React Framework
Package summary
Share
5
issues
3
high severity
vulnerability
2
license
1
1
moderate severity
meta
1
1
low severity
license
1
6
licenses
22
MIT
2
ISC
1
Apache-2.0
3
other licenses
CC-BY-4.0
1
BSD-3-Clause
1
0BSD
1
Package created
11 Jul 2011
Version published
18 Jan 2024
Maintainers
3
Total deps
28
Direct deps
18
License
MIT

Issues

5

3 high severity issues

high
Recommendation: Upgrade to version 14.1.1 or later
via: next@14.1.0
Recommendation: Upgrade to version 14.1.1 or later
via: next@14.1.0
Recommendation: Read and validate the license terms
via: caniuse-lite@1.0.30001620
Collapse
Expand

1 moderate severity issue

moderate
via: styled-jsx@5.1.1
Collapse
Expand

1 low severity issue

low
Recommendation: Read and validate the license terms
via: caniuse-lite@1.0.30001620
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
22 Packages, Including:
@next/env@14.1.0
@next/swc-darwin-arm64@14.1.0
@next/swc-darwin-x64@14.1.0
@next/swc-linux-arm64-gnu@14.1.0
@next/swc-linux-arm64-musl@14.1.0
@next/swc-linux-x64-gnu@14.1.0
@next/swc-linux-x64-musl@14.1.0
@next/swc-win32-arm64-msvc@14.1.0
@next/swc-win32-ia32-msvc@14.1.0
@next/swc-win32-x64-msvc@14.1.0
busboy@1.6.0
client-only@0.0.1
js-tokens@4.0.0
loose-envify@1.4.0
nanoid@3.3.7
next@14.1.0
postcss@8.4.31
react-dom@18.3.1
react@18.3.1
scheduler@0.23.2
streamsearch@1.1.0
styled-jsx@5.1.1

ISC License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
Cannot
hold-liable
Must
include-copyright
include-license
2 Packages, Including:
graceful-fs@4.2.11
picocolors@1.0.1

Apache License 2.0

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
use-patent-claims
place-warranty
Cannot
hold-liable
use-trademark
Must
include-copyright
include-license
state-changes
include-notice
1 Packages, Including:
@swc/helpers@0.5.2

Creative Commons Attribution 4.0 International

Uncategorized
Not OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
Cannot
Must
1 Packages, Including:
caniuse-lite@1.0.30001620

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:
source-map-js@1.2.0

BSD Zero Clause 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
include-copyright
include-license
include-original
Cannot
hold-liable
Must
1 Packages, Including:
tslib@2.6.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.

Direct Dependencies

18
All Dependencies CSV
β“˜ This is a list of next 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
@next/env14.1.04.63 kBMIT
prod
@next/swc-darwin-arm6414.1.032.95 MBMIT
prod optional
@next/swc-darwin-x6414.1.033.72 MBMIT
prod optional
@next/swc-linux-arm64-gnu14.1.033.84 MBMIT
prod optional
@next/swc-linux-arm64-musl14.1.041.11 MBMIT
prod optional
@next/swc-linux-x64-gnu14.1.037 MBMIT
prod optional
@next/swc-linux-x64-musl14.1.044.24 MBMIT
prod optional
@next/swc-win32-arm64-msvc14.1.029.41 MBMIT
prod optional
@next/swc-win32-ia32-msvc14.1.026.53 MBMIT
prod optional
@next/swc-win32-x64-msvc14.1.036.58 MBMIT
prod optional
@swc/helpers0.5.250.34 kBApache-2.0
prod
busboy1.6.019.67 kBMIT
prod
caniuse-lite1.0.300016201.96 MBCC-BY-4.0
prod
1
1
graceful-fs4.2.119.57 kBISC
prod
postcss8.4.3144.81 kBMIT
prod
react-dom18.3.14.3 MBMIT
prod peer
react18.3.1310.65 kBMIT
prod peer
styled-jsx5.1.1152.74 kBMIT
prod
1

Visualizations

Frequently Asked Questions

What does next do?

Next.js is a powerful JavaScript library used for building server-side rendered and static web applications using React. It is an open-source React front-end development web framework that enables functionality such as server-side rendering and generating static websites for React based web applications. Crafted by Vercel, Next.js has risen to prominence in the JavaScript community due to its ease-of-use, performance optimization features, and comprehensive developer experience.

How do you use next?

To get started with Next.js, you will first need to install it. The preferred method of installation is through npm (Node Package Manager). Use the following command in your terminal to install Next.js, React and React DOM in your project:

npm install next react react-dom

In your package.json file, add the following scripts:

"scripts": {
  "dev": "next dev",
  "build": "next build",
  "start": "next start"
}

Next.js is now installed, and you can start developing your application. Run npm run dev command in your terminal to start the development server. You can create a new page in the project by adding a .js file to the 'pages' directory. The file will be automatically associated with a route based on its file name.

// pages/index.js

import React from 'react';

export default function Home() {
  return (
    <div>
      <h1>Welcome to Next.js!</h1>
    </div>
  );
}

After writing your code, you can build your application for production deployment using the npm run build command.

Where are the next docs?

Detailed and comprehensive Next.js documentation is available at https://nextjs.org/docs. This is a valuable resource whether you are just starting out with Next.js or if you're a seasoned developer looking to delve deeper into its more advanced features. The documentation includes guides on core concepts, advanced features, API references, and more. You also have access to a community of Next.js users at your disposal through GitHub Discussions to ask questions and share ideas.