Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/disoul/electron-cloud-music
网易云音乐 Electron 客户端
https://github.com/disoul/electron-cloud-music
electron music-player react redux
Last synced: 6 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 (over 8 years ago)
- Default Branch: develop
- Last Pushed: 2017-10-22T19:09:52.000Z (about 7 years ago)
- Last Synced: 2024-08-01T15:08:55.343Z (3 months ago)
- Topics: electron, music-player, react, redux
- Language: JavaScript
- Homepage:
- Size: 456 KB
- Stars: 653
- Watchers: 25
- Forks: 154
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - electron-cloud-music - 网易云音乐 Electron 客户端 (JavaScript)
- awesome-github-star - electron-cloud-music
README
# NeteaseCloudMusic Electron
[![devDependency Status](https://david-dm.org/disoul/electron-cloud-music/dev-status.svg)](https://david-dm.org/disoul/electron-cloud-music#info=devDependencies)
网易云音乐Electron版## 进度
* 搜索歌曲+播放(版权歌曲无法播放
* 播放列表
* 手机登陆
* 个人歌单(创建,收藏
* 歌曲界面(滚动歌词
* 主页推荐
* 喜欢歌曲 && 自动向网易提交听歌记录
* [TODO] 私人FM![预览截图](http://7xn38i.com1.z0.glb.clouddn.com/[email protected])
![预览截图](http://7xn38i.com1.z0.glb.clouddn.com/[email protected])
![预览截图](http://7xn38i.com1.z0.glb.clouddn.com/[email protected])## 试用
打包了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
```