AuxNow is a full stack web application built with React and Node that generates Spotify playlists based off your Liked Songs and your chosen genres, mood, and sound textures. Made to quickly create background music to aux, share with friends, or for personal use.
This web app was made to familiarize myself React, backend development, and deployment.
- React
- spotify-web-api-js
- Spotify API
- axios
- See other dependencies in
package.json
git clone https://github.com/robinpx/auxnow.git
- Get your own credentials from Spotify
- Add
.envfile toauth-serverfolder and paste the fields
SPOTIFY_CLIENT_ID=abc123
SPOTIFY_CLIENT_SECRET=def456
SPOTIFY_REDIRECT_URI=https://localhost:8888/callback
FRONTEND_URI=https://localhost:3000
- Install node modules
npm install
cd auth-server
npm install
- Run frontend React application on development server
npm run dev
- Run backend server
cd auth-server
node server.js