mirror of
https://github.com/strapi/strapi.git
synced 2025-09-07 23:57:19 +00:00
706 B
706 B
Quick start
To facilitate the development of a plugin, we drastically reduce the amount of commands necessary to install the entire development environment. Before getting started, you need to have Node.js (v8) and npm (v5) installed.
Development Environment Setup
Create a development project
- Create a new project
cd .. && strapi new myDevelopmentProject
. cd myDevelopmentProject && strapi develop
To start the strapi project
Plugin development Setup
In a new terminal window:
- Generate a new plugin:
cd /path/to/myDevelopmentProject && strapi generate:plugin my-plugin
::: note The admin panel integration is currently not available. You can still add backend features. :::