Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unpublish package from Atmosphere

I've published a few packages in beta state to Atmosphere. Now, in development it turned out some of them are useless (they were consumed by another one). How can I unpublish them?

like image 636
Hubert OG Avatar asked Jul 24 '13 14:07

Hubert OG


People also ask

How do I unpublish a package?

Navigate to the package page for the package you want to unpublish, replacing <your-package-name> with the name of your package: https://www.npmjs.com/package/<your-package-name> . Click Settings. Under "delete package", click Delete package.

What is Verdaccio npm?

Verdaccio is a simple, zero-config-required local private npm registry. No need for an entire database just to get started! Verdaccio comes out of the box with its own tiny database, and the ability to proxy other registries (eg. npmjs.org), caching the downloaded modules along the way.

How do I publish an npm package to an organization?

Publishing a public organization scoped package To publish an organization scoped package as public, use npm publish --access public . On the command line, navigate to the package directory. Run npm publish --access public .


1 Answers

There is a temporary, undocumented way to do this:

Log into the atmosphere website with the same details you used to publish your package then in your javascript console in chrome, safari or firefox run:

Meteor.call("deletePackage","<your package name>",function(err,result){
    console.log(result || err)
});

Replace <your package name> with the name of your package, the same that you could run mrt add <your package name> with.

like image 134
Tarang Avatar answered Dec 31 '22 18:12

Tarang