Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stefanoconsonni/spotify-profile

A web app for visualizing personalized Spotify data built with React, Express, and the Spotify API
https://github.com/stefanoconsonni/spotify-profile

css express nodejs react spotify-api styled-components

Last synced: 4 days ago
JSON representation

A web app for visualizing personalized Spotify data built with React, Express, and the Spotify API

Awesome Lists containing this project

README

        

# Spotify Profile

A web app for visualizing personalized Spotify data built with React, Express, and the Spotify API

Built with:

- [Spotify Web API](https://developer.spotify.com/documentation/web-api/)
- [Create React App](https://github.com/facebook/create-react-app)
- [Express](https://expressjs.com/)
- [Styled Components](https://www.styled-components.com/)

## Local Installation & Set Up

1. Register a Spotify App in your [Spotify Developer Dashboard](https://developer.spotify.com/dashboard/) and add `http://localhost:8888/callback` as a Redirect URI in the app settings

2. Create a `.env` file at the root of the project based on `.env.example` and add your unique `CLIENT_ID` and `CLIENT_SECRET` from the Spotify dashboard

3. Ensure [nvm](https://github.com/nvm-sh/nvm) and [npm](https://www.npmjs.com/) are installed globally

4. Install the correct version of Node

```shell
nvm install
```

5. Install dependencies

```shell
npm install
```

6. Run the React app on and the Node server on

```shell
npm start
```