
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
cloudi-upload-with-ease
Advanced tools
A Node.js utility for easy file uploads to Cloudinary. Simplify the process of uploading images and videos with two convenient functions: uploadToCloudinary and uploadSingleOrMultiImagesToCloudinary
A Node.js utility for easy file uploads to Cloudinary. Simplify the process of uploading images and videos with two convenient functions: uploadToCloudinary
and
uploadSingleOrMultiImagesToCloudinary
.
npm install cloudi-upload-with-ease
const {
uploadToCloudinary,
uploadSingleOrMultiImagesToClodinary,
} = require('cloudi-upload-with-ease');
import {
uploadToCloudinary,
uploadSingleOrMultiImagesToClodinary,
} from 'cloudi-upload-with-ease';
const config = {
cloudinary_cloud_name: 'your_cloud_name',
cloudinary_api_key: 'your_api_key',
cloudinary_api_secret: 'your_api_secret',
};
const file = '/path/to/your/file.jpg'; // Provide the path to your file
const type = 'image'; // Specify the type: 'image', 'video', 'raw', 'auto', etc.
uploadToCloudinary(file, type, config)
.then((response) => {
console.log('File uploaded successfully:', response);
})
.catch((error) => {
console.error('Error uploading file:', error);
});
const files = [
{ path: '/path/to/image1.jpg' },
{ path: '/path/to/image2.jpg' },
// ... add more files as needed
];
const type = 'image'; // Specify the type: 'image', 'video', 'raw', 'auto', etc.
uploadSingleOrMultiImagesToClodinary(files, type, config)
.then((response) => {
console.log('Files uploaded successfully:', response);
})
.catch((error) => {
console.error('Error uploading files:', error);
});
This project is licensed under the MIT License - see the LICENSE file for details.
Cloudinary - Cloud-based image and video management service.
Contributions are welcome! Please feel free to open an issue or submit a pull request.
This package is authored by Olaoluwa Daniel IBUKUN.
FAQs
A Node.js utility for easy file uploads to Cloudinary. Simplify the process of uploading images and videos with two convenient functions: uploadToCloudinary and uploadSingleOrMultiImagesToCloudinary
The npm package cloudi-upload-with-ease receives a total of 1 weekly downloads. As such, cloudi-upload-with-ease popularity was classified as not popular.
We found that cloudi-upload-with-ease 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
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.