
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
An unofficial library to easily upload files to imgbox.com
Install imgbox with npm
npm install imgbox
import or require the library
const { imgbox } = require('imgbox')
// or
import { imgbox } from 'imgbox'
Using Buffer:
imgbox(fs.readFileSync('./tes.jpg'))
.then(data => console.log(data))
To specify filename:
const file = {
filename: 'tes.jpg',
buffer: fs.readFileSync('./tes.jpg')
}
imgbox(file)
.then(data => console.log(data))
Multiple files:
const files = [Buffer, Buffer, Buffer, ...]
imgbox(files)
.then(data => console.log(data))
Multiple files with specified name:
const files = [
{
filename: 'tes1.jpg',
buffer: Buffer,
},
{
filename: 'tes2.jpg',
buffer: Buffer,
},
{
filename: 'tes3.jpg',
buffer: Buffer,
},
]
imgbox(files)
.then(data => console.log(data))
Using image URL:
imgbox('https://picsum.photos/200')
.then(data => console.log(data))
To specify filename with image url:
const file = {
filename: 'tes.jpg',
url: 'https://picsum.photos/200'
}
imgbox(file)
.then(data => console.log(data))
To upload multiple files url:
const files = [
'https://picsum.photos/200',
'https://picsum.photos/300',
'https://picsum.photos/400',
]
imgbox(files)
.then(data => console.log(data))
To upload multiple files url with specified name
const files = [
{
filename: 'tes1.jpg',
url: 'https://picsum.photos/200',
},
{
filename: 'tes2.jpg',
url: 'https://picsum.photos/300',
},
{
filename: 'tes3.jpg',
url: 'https://picsum.photos/400',
},
]
imgbox(files)
.then(data => console.log(data))
Example response:
{
"ok": true,
"gallery_edit": "https://imgbox.com/gallery/edit/qxxxxx/Zxxxxxxx",
"files": [
{
"id": "nR8EAQjx",
"slug": "nR8EAQjx",
"name": "tes.jpg",
"name_html_escaped": "925-200x200.jpg",
"created_at": "2021-07-02T08:42:36.468Z",
"created_at_human": "July 02, 2021 08:42",
"updated_at": "2021-07-02T08:42:37.638Z",
"gallery_id": "qSO2k2NDxX",
"url": "https://imgbox.com/xxx",
"original_url": "https://images2.imgbox.com/23/dd/xxx_o.jpg",
"thumbnail_url": "https://thumbs2.imgbox.com/23/dd/xxx_t.jpg",
"square_url": "https://thumbs2.imgbox.com/23/dd/xxx_b.jpg",
"selected": false,
"comments_enabled": 0,
"comments_count": 0
},
{
"id": "nR8EAQjx",
"slug": "nR8EAQjx",
"name": "tes2.jpg",
"name_html_escaped": "925-200x200.jpg",
"created_at": "2021-07-02T08:42:36.468Z",
"created_at_human": "July 02, 2021 08:42",
"updated_at": "2021-07-02T08:42:37.638Z",
"gallery_id": "qSO2k2NDxX",
"url": "https://imgbox.com/xxx",
"original_url": "https://images2.imgbox.com/23/dd/xxx_o.jpg",
"thumbnail_url": "https://thumbs2.imgbox.com/23/dd/xxx_t.jpg",
"square_url": "https://thumbs2.imgbox.com/23/dd/xxx_b.jpg",
"selected": false,
"comments_enabled": 0,
"comments_count": 0
}
]
}
FAQs
Unofficial library for uploading images to imgbox.com
The npm package imgbox receives a total of 6 weekly downloads. As such, imgbox popularity was classified as not popular.
We found that imgbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.