how to delete Meteor app.. simply remove directory?

meteor

Solution

Yes, just remove the directory. Meteor stores everything in a .meteor folder under your app's directory.

EDIT: that's not entirely true, Meteor also has a local cache of packages you've installed (so it doesn't have to fetch them later). This usually goes to your home folder and works in much the same way as npm. But it's not necessary to delete this in order to remove the meteor application, they are unrelated.

Problem

quick question, I think. If I want to delete an app that I created with $> meteor create myapp; do I just remove the myapp directory? thanks

Original source