Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add additional npm features to documentation #990

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions content/about-npm/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,15 @@ If you choose to share your packages publicly, there is no cost. To use and shar

You can also use a private npm package registry like [GitHub Packages](https://github.com/features/packages) or the open source [Verdaccio](https://verdaccio.org) project. This lets you develop packages internally that are not shared publicly.

## Additional Features

- **npm scripts**: npm can run scripts defined in the `package.json` file of a project, providing a consistent way to manage tasks such as testing, building, or deploying projects.

- **Semantic Versioning (SemVer)**: npm uses SemVer for versioning, helping developers manage dependencies and avoid issues with breaking changes.

- **npm audit**: This is a built-in security feature that automatically reviews package dependencies for known security vulnerabilities and recommends a security review.


## Learn more

To learn more about npm as a product, upcoming new features, and interesting uses of npm be sure to follow [@npmjs](https://twitter.com/npmjs) on Twitter.
Expand Down