techved-import-export
v1.0.8
Published
Enhanced CSV import/export plugin for Strapi 5 with API-based import
Maintainers
Readme
Techved Import Export with CSV for Strapi 5
Import/Export data from and to your database for Strapi 5 - a fork of strapi-import-export, but removed the JSON format, and used new library for CSV processing.
NPM Install:
npm i techved-import-export
Guide
This plugin allows you to import / export with csv format on strapi collection.
To do so, you need to add into the config/plugin.ts
...
"techved-import-export": {
config: {
authorizedExports: ["api::machine.machine"],
authorizedImports: ["api::machine.machine"]
}
}
...Config
authorizedExports: String[] - A list of collection slugs where you allow exports for the app
authorizedImports: String[] - A list of collection slugs where you allow imports for the app
ℹ️ Info : By default, no collection is allowed for export / import.
