How to remove a Yeoman generator

funerr picture funerr · Jul 23, 2013 · Viewed 36k times · Source

I accidentally installed a generator that I don't want.
I can't find any method to remove it.
What should I do to accomplish this?

Answer

passy picture passy · Jul 23, 2013

Generators are just normal npm modules, so you can remove it with

npm uninstall -g generator-[nameOfGenerator]