Simple Gambit App
We're going to walk through creating a simple Gambit app. This app will allow the user to search for a username using Github's public api and see all of the resulting users. I apologise that it's not a todo app but who on earth cares about that. Also Gambit is about APIs so it's a good to showcase that.
NB: This guide will talk about concepts that require some knowledge of redux
If you'd like to play along as we build this application then you can get the starter app (that we'll build on top of) by doing:
git clone https://github.com/Ghirro/gambit-barebones-app.git
You can then run the app:
cd gambit-barebones-app
npm i
npm run serve
Alternatively, if you want to skip right to the end and see the code as it is when finished:
git clone https://github.com/Ghirro/gambit-github-example
cd gambit-github-example
npm i
npm run serve