Extend features of Strapi admin dashboard with powerful plugins.
We can develop custom plugin of Strapi with React/NodeJS.
Environment
– You can add plugin by using command line strapi generate:plugin my-plugin
.
Details here.
https://strapi.io/documentation/3.0.0-beta.x/plugin-development/quick-start.html#development-environment-setup
– Start a Strapi application with autoReload enabled.
strapi develop --no-build --watch-admin
Server will run on port number 8000.
You can find CLI about this here.
https://strapi.io/documentation/3.0.0-beta.x/cli/CLI.html#strapi-build
Development
The logic of a plugin is located at his root directory ./plugins/**
. The admin panel related parts of each plugin is contained in the /admin
folder.
We can build UI/UX of plugin with React framework.
https://strapi.io/documentation/3.0.0-beta.x/plugin-development/backend-development.html
Thanks for your time.