imagekit-nodejs icon indicating copy to clipboard operation
imagekit-nodejs copied to clipboard

Node.js SDK for ImageKit.io API.

Results 10 imagekit-nodejs issues
Sort by recently updated
recently updated
newest added
trafficstars

Getting started guide similar to https://github.com/imagekit-samples/quickstart/tree/master/react

my folder name is only contain alphabet. like govind , but its throw this error const res = await imagekit.upload({ file: fileData, fileName: imageName, folder: "govind", tags: ["clinic", "logo"], });

For context, I'm using NextJS, but not sure if that's relevant - and I'm uploading images (specifically in `.webp` format), and via base64 strings. If I specify an existing sub...

Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.15.5 to 1.15.6. Commits 35a517c Release version 1.15.6 of the npm package. c4f847f Drop Proxy-Authorization across hosts. 8526b4a Use GitHub for disclosure. See full diff in compare...

dependencies

At the moment, I am getting warning: >  WARN  Unsupported engine: wanted: {"node":"^20"} (current: {"node":"v21.4.0","pnpm":"8.12.1"})

# Feature Request Allow adapters for axios requests # The Problem: The SDK currently uses axios with its default adapter to make requests. However in serverless environments (Cloudflare Pages in...

we are trying to implement cropping tool using image kit. with below code ``` const params = { width: completedCrop.width, height: completedCrop.height, x: completedCrop.x, y: completedCrop.y, } const imgURL =...

Sample Code: ``` var imagekit = require("imagekit") let imagekitClient = new imagekit({ publicKey: "does-no-matter", urlEndpoint: "http://ik.imagekit.io/pwliscd3n", privateKey: "aksnda" }) console.log(imagekitClient.url({ urlEndpoint: "http://ik.imagekit.io/pwliscd3n", path: "/Stu's Design/test_YAWJ6NgGN.jpg", signed: false, })) ``` Expected...

Added Proper comment in return types in function definition. Proper use of comparison operator for strict comparison. Removed unwanted use of lodash library for reduce build size. Added more package...