Content-Type Explorer is a Strapi plugin that visualizes your content types and their relationships like an ERD (Entity Relationship Diagram).
npm i strapi-content-type-explorer
createdBy
, createdAt
, updatedBy
, updatedAt
admin::
Typesplugin::
Types[!TIP] If you encounter lags while dragging boxes, try changing edge types. "Smart" edges cause performance issues (this should be fixed in future releases)
src/plugins/
folder:βββ π config
β βββ plugins.js (ποΈ create this)
βββ π plugins
βββ π strapi-content-type-explorer (ποΈ clone here)
cd src/plugins
git clone https://github.com/ShahriarKh/strapi-content-type-explorer.git
config/plugins.js
if it doesn't exist and add this:module.exports = {
"strapi-content-type-explorer": {
enabled: true,
resolve: "./src/plugins/strapi-content-type-explorer",
},
};
plugins/strapi-content-type-explorer
and install dependencies:cd src/plugins/strapi-content-type-explorer
npm i
npm run strapi develop -- --watch-admin
Have a question or found a bug? Feel free to open an issue. Wanna contribute and improve the plugin? PRs are welcome!