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.