goodreads-api-node
goodreads-api-node copied to clipboard
How can I add no-cors to header?
I am building a web-app with this module, and during development, I get an error saying the fetch couldn't be completed because of CORS.
Is there a way to add "no-cors" to header for development? (So that I can test my code on localhost)
it should be added in the header of the request: 'Allow-Origin':'*' . try using the cors npm package
I am having the CORS issue as well. Seems to be a known issue w/ the Goodreads API? Not sure if this package is meant to solve for it.