
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NISTโs handling of the National Vulnerability Database.
cloudku-uploader
Advanced tools
A powerful and easy-to-use uploader for all file types using CloudKuImages API. Supports auto conversion, fast upload, and modern Node.js support.
Cloudku Uploader is a lightweight Node.js package that makes it easy to upload files to CloudkuImages.
It supports both CommonJS (CJS) and ECMAScript Modules (ESM).
npm install cloudku-uploader
const uploadFile = require('cloudku-uploader');
const fs = require('fs');
(async () => {
const buffer = fs.readFileSync('example.jpg');
const result = await uploadFile(buffer, 'example.jpg');
console.log(result);
})();
import uploadFile from 'cloudku-uploader';
import fs from 'fs';
(async () => {
const buffer = fs.readFileSync('example.jpg');
const result = await uploadFile(buffer, 'example.jpg');
console.log(result);
})();
Field | Type | Description |
---|---|---|
status | String | Upload status: ("success") / ("Error) |
url | String | Direct link to uploaded file |
fileName | String | Final uploaded file name |
size | Number | File size in readable format (KB, MB) |
type | String | MIME type of the file |
info | String | Official channel for info & support |
๐ฅ API Response
{
"status": "success",
"url": "https://cloudkuimages.com/uploads/example.jpg",
"fileName": "example.jpg",
"size": "1.27 MB",
"type": "image/jpeg",
"information": "https://cloudkuimages.com/ch"
}
This package is under a Custom MIT License:
You may not copy, modify, resell, or redistribute this package without explicit permission. Violators will be prosecuted under Indonesian and international copyright law.
Got questions or feedback? Reach out: ๐ Website: Cloudkuimages ๐ฌ WhatsApp: channels ๐ฒGithub: GitHub
FAQs
A powerful and easy-to-use uploader for all file types using CloudKuImages API. Supports auto conversion, fast upload, and modern Node.js support.
The npm package cloudku-uploader receives a total of 10,128 weekly downloads. As such, cloudku-uploader popularity was classified as popular.
We found that cloudku-uploader demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 2 open source maintainers 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
As vulnerability data bottlenecks grow, the federal government is formally investigating NISTโs handling of the National Vulnerability Database.
Research
Security News
Socketโs Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.