https://github.com/disoul/electron-cloud-music
网易云音乐 Electron 客户端
https://github.com/disoul/electron-cloud-music
electron music-player react redux
Last synced: 20 days ago
JSON representation
网易云音乐 Electron 客户端
- Host: GitHub
- URL: https://github.com/disoul/electron-cloud-music
- Owner: disoul
- Archived: true
- Created: 2016-04-05T01:21:55.000Z (about 9 years ago)
- Default Branch: develop
- Last Pushed: 2017-10-22T19:09:52.000Z (over 7 years ago)
- Last Synced: 2024-10-29T21:54:45.869Z (6 months ago)
- Topics: electron, music-player, react, redux
- Language: JavaScript
- Homepage:
- Size: 456 KB
- Stars: 653
- Watchers: 25
- Forks: 156
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-github-star - electron-cloud-music
README
# NeteaseCloudMusic Electron
[](https://david-dm.org/disoul/electron-cloud-music#info=devDependencies)
网易云音乐Electron版## 进度
* 搜索歌曲+播放(版权歌曲无法播放
* 播放列表
* 手机登陆
* 个人歌单(创建,收藏
* 歌曲界面(滚动歌词
* 主页推荐
* 喜欢歌曲 && 自动向网易提交听歌记录
* [TODO] 私人FM

## 试用
打包了64位的linux和mac,见[release](https://github.com/disoul/electron-cloud-music/releases/tag/0.0.2)## Build
```bash
git clone https://github.com/disoul/electron-cloud-music && cd electron-cloud-music
npm install# Dev
# Start dev server
npm run dev# run cloudmusic in proj root path
# electron will load from 127.0.0.1:8080(webpack-dev-server
npm start# Release
vim main.js
# edit main.js like this
//mainWindow.loadURL('http://127.0.0.1:8080');
mainWindow.loadURL('file://' + __dirname + '/index.html');# build
make release
```