Open
Description
if I go with react, then I'd also like to rework the logic something like:
- server side http get on md src: https://raw.githubusercontent.com/h5bp/Front-end-Developer-Interview-Questions/master/README.md
- client side use marked lib to convert to html: https://github.com/chjj/marked
- then something akin to the logic I have already in original app but converted for react usage
- need figure out how to output html result into a file in app/src dir (and whether this html is the right format for existing logic)
- (nice to have) some way to schedule polling for the latest .md file (like every quarter or so)
- 2nd thought, if I can do a server side request to h5bp repo, then I'll be getting the latest src each time so scheduling is not necessary
options
- (probably better for now) migrate react and flask for http requests
- upgrade angular 2 and flask for the http requests
- look at sample angular/flask apps https://realpython.com/blog/python/flask-by-example-integrating-flask-and-angularjs/
- maybe want to set up some automated test system so I could get notification when an app goes down; probably go with travisCI so I can apply the knowledge to other opensource proj's