1.0.1 • Published 5 years ago

free-upload-image v1.0.1

Weekly downloads
1
License
MIT
Repository
github
Last release
5 years ago

免费图床上传图片

图床列表

figurebed:

smms

USAGE

const fupload = require('free-upload-image')

// default use smms
fupload('./ico.png').then(url => console.log(url))

const {addFigurebed} = fupload

// 添加图床
addFigurebed('test', async (file) => {
  // do something
  return await file
})

// use test
fupload('./ico.png', 'test').then(url => console.log(url))