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 (
develop
branch)
git clone https://github.com/Fvaco/goodreads-graphql-wrapper.git
- Install dependencies using
yarn
ornpm install
- Create the
.env
file with your Goodreads developer API key. Check the.env.sample
file to know the format. - Create the
dist
directory withyarn build
ornpm run build
- You can use
yarn dev
ornpm run dev
for 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.