Skip to content

Commit

Permalink
增加启动说明页
Browse files Browse the repository at this point in the history
  • Loading branch information
Binaryify committed Jun 14, 2017
1 parent 6aa0955 commit 5ecf33e
Show file tree
Hide file tree
Showing 4 changed files with 53 additions and 11 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 更新日志
### 2.5. | 2017.6.1
### 2.5.9 | 2017.6.14
增加启动说明页

### 2.5.8 | 2017.6.1
修复若干细节问题

### 2.5.7 | 2017.5.22
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "NeteaseCloudMusicApi",
"version": "2.5.8",
"version": "2.5.9",
"description": "网易云音乐 NodeJS 版 API",
"scripts": {
"start": "node app.js",
Expand Down
48 changes: 48 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>网易云音乐 API</title>
</head>
<body>
<h1>网易云音乐 API</h1>
当你看到这个页面时,这个服务已经成功跑起来了~
<a href="https://binaryify.github.io/NeteaseCloudMusicApi/">查看文档</a>
<h2>例子:</h2>
<ul>
<li>1. <a href="/search?keywords=海阔天空">搜索</a></li>
<li>2. <a href="/comment/music?id=186016&limit=1">歌曲评论</a></li>
<li>3. <a href="/dj/program?rid=336355127">电台节目</a></li>
</ul>
<style>
html,body{
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
background: #ffffff;
text-align: center;
margin-top:30px;
overflow: hidden;
}
*{
color:rgb(100,100,100);
}
a{
color:#42b983;
}
ul,li{
margin: 0;
}
ul{
margin-left: -40px;
line-height: 30px;
}
li{
list-style: none;
}
</style>
</body>
</html>
9 changes: 0 additions & 9 deletions public/loginHack.html

This file was deleted.

0 comments on commit 5ecf33e

Please sign in to comment.