From 0bd3f65363c2f4359b504259819331ba79337ef4 Mon Sep 17 00:00:00 2001 From: JAYMIN VALAKI <95623417+JAY1820@users.noreply.github.com> Date: Fri, 1 Mar 2024 14:10:37 +0530 Subject: [PATCH] Add additional npm features to documentation --- content/about-npm/index.mdx | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/content/about-npm/index.mdx b/content/about-npm/index.mdx index 075a33abb77..6c7b54322d2 100644 --- a/content/about-npm/index.mdx +++ b/content/about-npm/index.mdx @@ -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.