Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
uniquemo committed May 14, 2020
1 parent 26b69c3 commit 17ff938
Show file tree
Hide file tree
Showing 12 changed files with 30 additions and 52 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
node_modules
*.log
dist
.DS_Store
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# React Netease Music——基于React、TypeScript的高仿网易云mac客户端播放器
# React Netease Music
React Netease Music——一个基于React、TypeScript的高仿网易云mac客户端播放器。

一直想写一个音乐播放器把玩把玩,最近无意中发现很早就有人整理出了相关的API,话不多说,撸起来!代码使用React编写,没有使用额外的数据管理库(因为react hook真的挺方便的😂),欢迎提出你的意见,喜欢的话请给我一个star哈😁~

## 功能列表
Expand Down Expand Up @@ -35,27 +37,36 @@
- [ ] 创建/编辑/删除歌单
- [ ] 私信/@我/评论等通知功能
- [ ] 主题换肤
- ......看心情添加功能😂
- [ ] ......看心情添加功能😂

## 技术栈
- React,使用react hook做状态管理,没有使用额外的数据管理库。
- TypeScript,用TypeScript确实可以提高效率😃(容易发现错误)。
- @blueprintjs组件库,主要使用其中的Icon、Dialog、Toast、Spinner、Popover等
- @blueprintjs组件库,主要使用其中的Icon、Dialog、Toast、Spinner等
- CSS Modules。
- Webpack。
- Eslint做代码检查。

## API接口
[NeteaseCloudMusicApi](https://binaryify.github.io/NeteaseCloudMusicApi)

## 播放器的相关截图
![01_个性推荐页](./resources/01_个性推荐页.png)

![02_每日歌曲推荐](./resources/02_每日歌曲推荐.png)

![03_全部歌单](./resources/03_全部歌单.png)

![04_最新音乐页](./resources/04_最新音乐页.png)

![05_歌单详情页](./resources/05_歌单详情页.png)

![06_音乐播放详情](./resources/06_音乐播放详情.png)

![07_播放记录功能](./resources/07_播放记录功能.png)

![08_搜索功能](./resources/08_搜索功能.png)

![09_搜索结果页](./resources/09_搜索结果页.png)

## 项目启动
Expand Down
1 change: 0 additions & 1 deletion dist/3.0339294e.css

This file was deleted.

1 change: 0 additions & 1 deletion dist/3.ca162bd6.js

This file was deleted.

Binary file modified dist/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/index.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Momo's 音乐小站</title><link rel="shortcut icon" href="/favicon.ico"><link href="/main.e2d1a94a.css" rel="stylesheet"></head><body><div id="root"></div><script src="/main.bf44a0a8.js"></script></body></html>
<!doctype html><html lang="en"><head><meta charset="UTF-8"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Momo's 音乐小站</title><link rel="shortcut icon" href="/favicon.ico"><link href="/main.e2d1a94a.css" rel="stylesheet"></head><body><div id="root"></div><script src="/main.5fbf0c0b.js"></script></body></html>
2 changes: 0 additions & 2 deletions dist/main.bf44a0a8.js

This file was deleted.

41 changes: 0 additions & 41 deletions dist/main.bf44a0a8.js.LICENSE.txt

This file was deleted.

Binary file modified favicon.ico
Binary file not shown.
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "react-netease-music",
"version": "1.0.0",
"description": "",
"description": "基于React、TypeScript的高仿网易云mac客户端播放器",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --mode=development",
Expand All @@ -13,7 +13,16 @@
"type": "git",
"url": "git+https://github.com/Unique111/react-netease-music.git"
},
"keywords": [],
"keywords": [
"react",
"react hook",
"music",
"player",
"lyric",
"banner",
"typescript",
"eslint"
],
"author": "",
"license": "ISC",
"bugs": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: tipsColor;
}

.name {
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"include": ["src"],
"exclude": ["node_modules", "dist"],
"exclude": ["node_modules"],
"compilerOptions": {
/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
Expand Down

0 comments on commit 17ff938

Please sign in to comment.