mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 15:06:11 +00:00
697 B
697 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 start
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 development is currently not available. (Only the backend part is working) :::