Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/anhthii/Echo
:musical_note: A music streaming app built with React and Nodejs
https://github.com/anhthii/Echo
Last synced: about 1 month ago
JSON representation
:musical_note: A music streaming app built with React and Nodejs
- Host: GitHub
- URL: https://github.com/anhthii/Echo
- Owner: anhthii
- Archived: true
- Created: 2017-06-30T03:35:58.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-07T06:06:39.000Z (almost 2 years ago)
- Last Synced: 2024-10-28T08:33:53.241Z (about 2 months ago)
- Language: JavaScript
- Homepage:
- Size: 2.56 MB
- Stars: 367
- Watchers: 35
- Forks: 182
- Open Issues: 26
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
- project-awesome - anhthii/Echo - :musical_note: A music streaming app built with React and Nodejs (JavaScript)
README
# :musical_note: Echo
Visit website at: http://echo.codingstack.net/
[![Build Status](https://travis-ci.org/dkakashi69/Echo.svg?branch=master)](https://travis-ci.org/dkakashi69/Echo)
A music app made with React + Redux + Nodejs
demo video: (https://www.youtube.com/watch?v=knqfJlnTjtQ)![image](https://user-images.githubusercontent.com/47851878/124370432-f1d44d80-dca1-11eb-8eca-af7a043191f1.png)
![image](https://user-images.githubusercontent.com/20469909/41728185-5a3e2380-75a0-11e8-8356-fc0a810934eb.png)
## Features
* login to create and listen to your playlists
* download song when you are logged in
* lazy, paginated fetching
* player play/stop/forward/backward track
* search tracks by name and artist## Installation
### To run the app with Node.js and MongoDB
> This app will fetch tracks from an external api, so there is no need for a database to store tracks, but we still need one for creating user's playlistsInstall and start MongoDB (https://docs.mongodb.org/manual/installation).
Install Node.js (http://nodejs.org). Any version above 6.0 works fine
Open .env and adjust the `MONGODB_URI` to your MongoDB server name (localhost normally works if you're running locally).
1. Run `npm install`.
2. Run `npm run dev:client` to start the frontend server
Wait for the build process to complete
![carbon](https://user-images.githubusercontent.com/20469909/41726824-29385c4a-759d-11e8-9c5c-15a48452ad6e.png)
3. Run `npm run dev:server` to start the api server
Navigate to http://localhost:8000 in your browser to explore the app
## Build the app
* Build manually
```
$ npm start
```
Or
* Build with Docker Compose```
$ docker-compose build
$ docker-compose up
```After building the app, frontend and backend servers will be merged into a single server and be available at http://localhost:3000
## Contributors
- [Anh Thi](https://github.com/anhthii)
- [Nguyen Van Quyen Luc](https://github.com/Poseidon-God2k)