Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 12 days 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 3 years ago)
- Default Branch: main
- Last Pushed: 2021-07-18T14:41:16.000Z (over 3 years ago)
- Last Synced: 2024-08-01T19:56:24.217Z (3 months 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
[![Contributors](https://img.shields.io/github/contributors/eplist/eplist.svg)](https://github.com/badges/eplist/eplist/contributors)
[![visits](https://visitor.vercel.app/page/eplist-eplist?color=light-green)](https://github.com/eplist/eplist)
[![License](https://img.shields.io/github/license/eplist/eplist.svg)](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.