UNPKG
@dark-yasiya/imgbb.js
Version:
latest (0.0.1)
1.0.0
0.0.1
The Unofficial Scraper for https://imgbb.com/
github.com/DarkYasiyaofc/imgbb
DarkYasiyaofc/imgbb
@dark-yasiya/imgbb.js
/
example.js
9 lines
(7 loc)
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
const
{ image2url } =
require
(
"./imgbb"
);
const
path =
require
(
'path'
); (
async
() => {
const
filePath = path.
join
(__dirname,
'./image/imgbb.jpg'
);
// Provide your image path
const
result =
await
image2url
(filePath);
console
.
log
(result); })();