Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/upimg-backup/upimg-mirror
Backup upimg from NPM
https://github.com/upimg-backup/upimg-mirror
meto metowolf upimg
Last synced: 3 months ago
JSON representation
Backup upimg from NPM
- Host: GitHub
- URL: https://github.com/upimg-backup/upimg-mirror
- Owner: upimg-backup
- License: mit
- Created: 2019-01-20T05:59:07.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-01-20T06:01:38.000Z (almost 6 years ago)
- Last Synced: 2024-05-12T22:54:02.653Z (6 months ago)
- Topics: meto, metowolf, upimg
- Language: JavaScript
- Size: 6.84 KB
- Stars: 14
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Usage
### Installation
```bash
npm install upimg
```
or
```bash
yarn add upimg
```### Require module
```javascript
const upimg = require('upimg')
```### Support servers
|server|endpoint|cookie|url|
|:---:|:---:|:---:|---|
|alibaba|aliexpress|-|[ae01.alicdn.com](https://ae01.alicdn.com/kf/HTB1dYeZXZrrK1RjSspa763REXXaP.png)|
|jd|京东|-|[img14.360buyimg.com](https://img14.360buyimg.com/img/jfs/t27652/56/2185046614/6538/3a9cae42/5bfa42ccN6f124f96.png)|
|netease|网易严选|-|[yanxuan.nosdn.127.net](https://yanxuan.nosdn.127.net/3093b774838d230839f4b9dbf93a5e24.png)|
|smms|smms|-|[i.loli.net](https://i.loli.net/2018/11/25/5bfa42f923fe8.png)|
|suning|苏宁易购|-|[image.suning.cn](https://image.suning.cn/uimg/ZR/share_order/154744665504078477.jpg)|
|xiaomi|小米有品|-|[shop.io.mi-img.com](https://shop.io.mi-img.com/app/shop/img?id=shop_601628d09da962bb7ae33344d1529303.png&w=512&h=512)|
|xitu|掘金|-|[user-gold-cdn.xitu.io](https://user-gold-cdn.xitu.io/2018/12/11/1679cff746d2dd30)|
|panda|熊猫直播|require|[i.h2.pdim.gs](https://i.h2.pdim.gs/601628d09da962bb7ae33344d1529303.png)|
|qcloud|云+社区|require|[ask.qcloudimg.com](https://ask.qcloudimg.com/draft/1134330/g2oaa9bdbx.png)|
|weibo|微博|require|[wx1.sinaimg.cn](https://wx1.sinaimg.cn/large/006FQA5Jgy1fxvodtp4w1j30e80e8dfq)|> for chinese users: 由于某公司方面施压,upimg 将不维护以上列表外服务的可用性
### Upload file
take `alibaba` for example
```javascript
upimg.alibaba
.upload('./test/nodejs.png')
.then(json => console.log(json))
.catch(err => console.error(err.message))
```success response
```json
{
"url": "https://ae01.alicdn.com/kf/HTB1dYeZXZrrK1RjSspa763REXXaP.png",
"type": {
"ext": "png",
"mime": "image/png"
}
}
```take `panda` for cookies required example
```javascript
upimg.panda
.cookie('foo=bar; xxx=123')
.upload('./test/nodejs.png')
.then(json => console.log(json))
.catch(err => console.error(err.message))
```success response
```json
{
"url": "https://i.h2.pdim.gs/601628d09da962bb7ae33344d1529303.png",
"type": {
"ext": "png",
"mime": "image/png"
}
}
```## Author
**upimg** © [metowolf](https://github.com/metowolf), Released under the [MIT](./LICENSE) License.
> Blog [@meto](https://i-meto.com) · GitHub [@metowolf](https://github.com/metowolf) · Twitter [@metowolf](https://twitter.com/metowolf) · Telegram Channel [@metooooo](https://t.me/metooooo)