I installed the Iron Meteor framework using the Curl package manager for a group class project. The group has since decided to use another framework. I would like to purge the Iron Meteor framework from my Linux system but have been unable to find an uninstall command for Curl. The command to install it was found on the Meteor Tips web site:
curl https://install.meteor.com/ | sh
Curl's --help hasn't relieved anything useful. Does anyone know how to do this?
You can remove a package from meteor project, either in command line or by deleting it from ./meteor/packages file.
So to remove iron:router just type in terminal:
meteor remove iron:router
Or find iron:router in your .meteor/packages file and simply delete it.