DEV Community

Discussion on: Create an awesome JS API interface using Fetch (in less than 50 lines)

Collapse
 
aleksandar874 profile image
aleksandar87

I do it similarly on my daily job.

Simplified structure:

book/
create
read
update
delete

books/
available
availableByType
specific

Thread Thread
 
eaich profile image
Eddie

Oh I see. Yes, that's a good solution too. Thanks for sharing.