Ever have a catchy hook stuck in your head, but can't remember the song? (Always) Wish you could find out what that song is and play it on Spotify? (Would love that)
Now with Spotizam you can search spotify's music library with lyrics!
LIVE DEMO: https://spotizam.glitch.me/ && https://spotizam.herokuapp.com/
Hacked up this app to experiment with a bunch of cool APIs and get my feet wet with Typescript. Emphasis on hack project, especially with how I used TS.
- Spotify's awesome web api
- Google's custom search api
- Microsoft Azure's speech to text api
Made with the ever so awesome create react app.
Yarn or npm install to grab dependencies
npm install
yarn install
You'll also need a .env
file housing your necessary API ids and secrets with them named like so ..
REACT_APP_AUTH_TOKEN_KEY=<Your auth token key>
REACT_APP_SPOTIFY_CLIENT_ID=<Spotify provided client id>
REACT_APP_SPOTIFY_CLIENT_SECRET=<Spotify provided client secret>
REACT_APP_GOOGLE_API_KEY=<Google provided developer api key>
REACT_APP_GOOGLE_CX_ID=<Google provided custom search engine id>
REACT_APP_MICROSOFT_KEY=<Microsoft provided azure key>
Then start app with either npm or yarn
npm run start
yarn start