logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Unpublish NPM Package - Remove Packages from NPM Registry | Online Free DevTools by Hexmos

Remove NPM packages easily with NPM Unpublish. Delete specific versions or entire packages from the NPM registry. Free online tool, no registration required.

npm-unpublish

Remove a package from the npm registry. More information: https://docs.npmjs.com/cli/npm-unpublish.

  • Unpublish a specific package version:

npm unpublish {{package_name}}@{{version}}

  • Unpublish the entire package:

npm unpublish {{package_name}} {{[-f|--force]}}

  • Unpublish a package that is scoped:

npm unpublish @{{scope}}/{{package_name}}

  • Specify a timeout period before unpublishing:

npm unpublish {{package_name}} --timeout {{time_in_milliseconds}}

  • To prevent accidental unpublishing, use the --dry-run flag to see what would be unpublished:

npm unpublish {{package_name}} --dry-run

See Also