A GraphQL wrapper for the Goodreads REST API.
For now it's just in an early development stage. My plan is to cover all features in the orginal Goodreads API.
Feel free to contribute, report issues, request new features. Read the CONTRIBUTING.md to know more.
- Copy the repository (
developbranch)
git clone https://github.com/Fvaco/goodreads-graphql-wrapper.git
- Install dependencies using
yarnornpm install - Create the
.envfile with your Goodreads developer API key. Check the.env.samplefile to know the format. - Create the
distdirectory withyarn buildornpm run build- You can use
yarn devornpm run devfor watch mode
- You can use
- Run it in local server using
yarn nodemon dist/server.js
or
npm run nodemon dist/server.js
- Open you'll be able to see the GraphQL Playgrond on
http://localhost:4000
Inspired and originally forked from Mac McCarthy good_wrap repository, check his work on Github.