mirror of
https://gitlab.com/Binaryify/neteasecloudmusicapi.git
synced 2025-05-23 22:37:41 +08:00
This commit is contained in:
parent
8bde78595b
commit
641a72b06c
@ -1,4 +1,7 @@
|
||||
# 更新日志
|
||||
### 3.24.1 | 2019.10.25
|
||||
- 修改默认绑定 HOST [#615](https://github.com/Binaryify/NeteaseCloudMusicApi/issues/615)
|
||||
|
||||
### 3.24.0 | 2019.10.22
|
||||
- 新增`类别热门电台` 接口 [#607](https://github.com/Binaryify/NeteaseCloudMusicApi/issues/607)
|
||||
|
||||
|
2
app.js
2
app.js
@ -83,7 +83,7 @@ fs.readdirSync(path.join(__dirname, 'module')).reverse().forEach(file => {
|
||||
})
|
||||
|
||||
const port = process.env.PORT || 3000
|
||||
const host = process.env.HOST || 'localhost'
|
||||
const host = process.env.HOST || '127.0.0.1'
|
||||
|
||||
app.server = app.listen(port, host, () => {
|
||||
console.log(`server running @ http://${host}:${port}`)
|
||||
|
@ -181,6 +181,15 @@ windows 下使用 git-bash 或者 cmder 等终端执行以下命令 :
|
||||
$ set PORT=4000 && node app.js
|
||||
```
|
||||
|
||||
服务器启动绑定 127.0.0.1,如果需要更改, 可使用以下命令 : Mac/Linux
|
||||
```shell
|
||||
$ HOST=localhost node app.js
|
||||
```
|
||||
windows 下使用 git-bash 或者 cmder 等终端执行以下命令 :
|
||||
|
||||
```shell
|
||||
$ set HOST=localhost && node app.js
|
||||
```
|
||||
## 可以使用代理
|
||||
|
||||
在 query 参数中加上 proxy=your-proxy 即可让这一次的请求使用 proxy
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "NeteaseCloudMusicApi",
|
||||
"version": "3.24.0",
|
||||
"version": "3.24.1",
|
||||
"description": "网易云音乐 NodeJS 版 API",
|
||||
"scripts": {
|
||||
"start": "node app.js",
|
||||
|
Loading…
x
Reference in New Issue
Block a user