7

How can I safely remove a CRUD module built with yo meanjs:crud-module <module-name> ?

Is it enough just to delete folder and server files?

Lupus
  • 1,519
  • 3
  • 21
  • 38
  • 2
    I don't get why all that people find this question "unclear". Can it be more clear than this? – Lupus May 26 '14 at 19:38
  • 1
    Yes. Adding a list of the folders would be helpful to users. Here are the folders I deleted when I removed the Articles collection: /public/modules/articles , /app/controllers/articles.server.controller.js , /app/models/articles.server.model.js , /app/routes/articles.server.routes.js , /app/tests/articles.server.model.test.js – RevNoah Sep 15 '14 at 13:10
  • 1
    @lupus because SO has become a hive for question nazis – unaligned Jul 22 '15 at 00:31

1 Answers1

7

Yes, that is all there is to it. The meanjs system is designed to utilize the files that are there without modifying any configuration files. If the crud-module files are gone, it won't be looking for them.

RevDave
  • 124
  • 3