bookmarkd
bookmarkd copied to clipboard
A React PWA for reading ebooks
We want to add a blurb and genre to our book objects so that we can filter and give the user more info about each book. The metadata in the...
##### Product concept Oli to present ##### Product demo How to split? Cast from phone? ##### Next feature What would the next feature be? ##### Technical issue: Offline functionality -...
[Here](https://github.com/oliverjam/bookmarkd/blob/62b1d50016a0051b058334fbf5c8de2dff881db9/backend/script.js#L78) - don't do it kids.
I've raised lots of issues, so I want to also say that this is a really impressive app. Good work all!
I recommend trying to construct your react apps in a way that has as little state as is possible. If you can calculate something based on props, or other pieces...
In [bookrows](https://github.com/oliverjam/bookmarkd/blob/master/src/components/BookRows.js) you extend class but then don't use any of the features of a class. I've seen you using functional components else where - and I think it's good...
Snapshot tests are quick and easy to set up - and they give you quite a lot of information when you are making changes. Do it :)