https://github.com/eplist/eplist
All cloud storage platform endpoint list. /一份由社区维护的云存储接入点列表文件
https://github.com/eplist/eplist
cos kodo nos obs oss s3 us3 zpan
Last synced: over 1 year ago
JSON representation
All cloud storage platform endpoint list. /一份由社区维护的云存储接入点列表文件
- Host: GitHub
- URL: https://github.com/eplist/eplist
- Owner: eplist
- License: mit
- Created: 2021-02-25T06:50:07.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-18T14:41:16.000Z (about 5 years ago)
- Last Synced: 2024-10-31T10:36:51.448Z (over 1 year ago)
- Topics: cos, kodo, nos, obs, oss, s3, us3, zpan
- Homepage:
- Size: 10.7 KB
- Stars: 11
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eplist
[](https://github.com/badges/eplist/eplist/contributors)
[](https://github.com/eplist/eplist)
[](https://github.com/eplist/eplist/blob/master/LICENSE)
## Introduction
云存储各大厂商都没有提供endpoint的列表API,所以我们通过开源社区的方式维护一份。
利用它,可以在配置云存储时快速选择需要的endpoint。
## Platforms
- [阿里云OSS](oss.yml)
- [腾讯云COS](cos.yml)
- [七牛Kodo](kodo.yml)
- [网易云NOS](nos.yml)
- [华为云OBS](obs.yml)
- [亚马云S3](s3.yml)
- [优刻得US3](us3.yml)
## Usage
### curl
```bash
curl https://raw.githubusercontent.com/eplist/eplist/main/oss.yml
```
### Js-axios
```js
import axios from "axios";
import yamlLoader from "js-yaml";
axios.get(`https://raw.githubusercontent.com/eplist/eplist/main/oss.yml`).then((data) => {
let eplist = yamlLoader.load(data);
console.log(eplist.endpoints);
})
```
## License
This repo is under the MIT license. See the [LICENSE](/LICENSE) file for details.