Gathering detailed insights and metrics for @shoaibmerchant/strapi-provider-upload-imagekit
Gathering detailed insights and metrics for @shoaibmerchant/strapi-provider-upload-imagekit
Gathering detailed insights and metrics for @shoaibmerchant/strapi-provider-upload-imagekit
Gathering detailed insights and metrics for @shoaibmerchant/strapi-provider-upload-imagekit
ImageKit provider for strapi upload
npm install @shoaibmerchant/strapi-provider-upload-imagekit
Typescript
Module System
Min. Node Version
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
23 Stars
100 Commits
6 Forks
1 Watchers
3 Branches
2 Contributors
Updated on Mar 25, 2025
Latest Version
4.0.4
Package Id
@shoaibmerchant/strapi-provider-upload-imagekit@4.0.4
Unpacked Size
6.85 kB
Size
2.95 kB
File Count
6
NPM Version
8.13.1
Node Version
16.15.1
Published on
Apr 12, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
4.0.2
^4.0.0
4.0.7
:exclamation: MAYOR
and MINOR
versions of the provider are representing compatability with Strapi, while the PATCH
version is used to denote changes in the provider itself.
:exclamation: For Strapi v3
please use v0.2.5
of this provider.
1. Install via npm or yarn
npm install strapi-provider-upload-imagekit --save
or
yarn add strapi-provider-upload-imagekit
2. Add or modify the plugins configuration file
Global configuration file is located in ./config/plugins.js
Environment configuration files are located in ./config/env/{env}/plugins.js
For more information please check the official documentation.
3. Add your configuration
Example ./config/plugins.js
:
1module.exports = ({ env }) => ({ 2 upload: { 3 config: { 4 provider: "strapi-provider-upload-imagekit", // Community providers need to have the full package name 5 providerOptions: { 6 publicKey: "publicKey", 7 privateKey: "privateKey", 8 urlEndpoint: "urlEndPoint", // Example: https://ik.imagekit.io/username 9 10 // Optional 11 params: { 12 folder: "/production/images" // Defaults to "/" if value is not supplied 13 } 14 } 15 } 16 } 17});
4. Setting up strapi::security
middlewares to prevent contentSecurityPolicy
URL blocking
Modify ./config/middleware.js
:
1// ... 2{ 3 name: 'strapi::security', 4 config: { 5 contentSecurityPolicy: { 6 useDefaults: true, 7 directives: { 8 'connect-src': ["'self'", 'https:'], 9 'img-src': ["'self'", 'data:', 'blob:', 'ik.imagekit.io'], 10 'media-src': ["'self'", 'data:', 'blob:', 'ik.imagekit.io'], 11 upgradeInsecureRequests: null, 12 }, 13 }, 14 }, 15}, 16// ...
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
2 existing vulnerabilities detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 0/28 approved changesets -- score normalized to 0
Reason
0 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More