Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.34 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.34 KB

Build Status Coverage Status

Todo Wrangler

This is a very simple angular application to demonstrate style guidelines learned from John Papa. All in all, it was a fun exercise to relearn angular, jasmine, and karma.

Structure

For the structure of this app, I followed John Papa's guide. The folders match up with sections within the app. This makes it very easy to find code related to the feature I'm working on.

app/
 - about/
   - about.html
 - navigation/
   - nav-controller.js
 - todos/
   - todos-controller.js
   - todos-controller.spec.js
   - ...

Testing

To run the tests, simply type:

karma start

The specs are located beside the code they test. Yes, it's technically open for all to see but if I didn't want it viewable, I could just put it in a different folder outside of app.

Documentation

Documentation can be viewed here or generated with jsdoc.