Kevin-Rau / breakfast

0 stars 4 forks source link

Josh Fermin's Evaluation #8

Open joshfermin opened 9 years ago

joshfermin commented 9 years ago

Couldn't get the code running due to a couple of things as others have pointed out, but I have some more suggestions you could do to improve your code base.

One thing you might want to do is add the node_modules to your .gitignore file so that the dependencies don't have to live on your repo (code size may get inflated). This way the user can just do an npm install and all the dependencies will get installed to their machine. Also, to add to that, you should probably remove all the dependencies that you are not using such as morgan, from your package.json and node_modules. Furthermore, adding a thorough readme would be very beneficial and helps add documentation to your code base. Helping other users run it.