
Security News
rv Is a New Rust-Powered Ruby Version Manager Inspired by Python's uv
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
strapi-plugin-cincopa-uploader
Advanced tools
Upload and manage Cincopa media assets directly from Strapi Admin Panel.
A powerful Strapi plugin for uploading and managing media assets in Cincopa directly from the Strapi Admin Panel.
This plugin is compatible with Strapi v5.
npm install strapi-plugin-cincopa-uploader@latest
After installation, configure the plugin based on your project setup.
JavaScript:
// ./config/plugins.js
module.exports = ({ env }) => ({
'cincopa-uploader': {
enabled: true,
config: {
apiToken: env('CINCOPA_API_TOKEN'),
fullCincopaSync: false,
},
},
});
TypeScript:
// ./config/plugins.ts
export default ({ env }) => ({
'cincopa-uploader': {
enabled: true,
config: {
apiToken: env('CINCOPA_API_TOKEN'),
fullCincopaSync: false,
},
},
});
Environment Variable:
CINCOPA_API_TOKEN=your_actual_api_token_here
Restart the server after saving changes:
npm run develop
Enable real-time synchronization by configuring a webhook in your Cincopa account.
https://your-strapi-domain.com/api/cincopa-uploader/webhook
Note: Webhook signature verification is currently disabled (may be added in future updates).
For local development, use ngrok:
ngrok http 1337
Then set the ngrok public URL in the webhook configuration.
If fullCincopaSync
is set to true
, the plugin will synchronize all assets in your Cincopa account, not only those uploaded via Strapi.
Modify in your plugin config:
fullCincopaSync: true
Enable public API access for your content:
find
and findOne
permissions for your collection typesFetch your data via:
curl http://localhost:1337/api/ikea-stores
Assets will appear with metadata, media URLs, and thumbnails.
The plugin doesn't show in Admin UI?
rm -rf .cache build
npm run build
npm run develop
Webhooks don't work locally?
Use ngrok or a similar tunneling tool.
For assistance, contact support@cincopa.com
FAQs
Upload and manage Cincopa media assets directly from Strapi Admin Panel.
The npm package strapi-plugin-cincopa-uploader receives a total of 43 weekly downloads. As such, strapi-plugin-cincopa-uploader popularity was classified as not popular.
We found that strapi-plugin-cincopa-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
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.