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?
Search for generators with
npm list -g --depth=0 | grep 'generator'
Remove generator with
npm uninstall -g [generator-name]
NOTE: Don't include '@[version] ' that follows the generator name