Is there a possible way to remove or delete the entire module from npm registry?
Notice: npm -f unpublish doesn\'t allowed you to unpublish anything ol
If the published package/version is less than 72 hours old, unless you are the single owner of the module.
npm unpublish --force
https://www.npmjs.com/policies/unpublish has details of the policy to unpublish packages
The command and the policy to unpublish packages may have changed since the question was asked.
npm force-unpublish package-name 'reason message'
OR
npm --force unpublish "package-name"
did not work for me.