
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
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
Blazing-fast, zero-dependency uploader for CloudKu. Supports auto-conversion, chunked uploads, and TypeScript. Easily upload images, videos, audio, and documents via Node.js.
The npm package cloudku-uploader receives a total of 2,380 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 3 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
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.