109 words
1 minute
Install Strapi
Prerequisites
- Node.js
- Node.js package manager (npm, yarn, pnpm)
- Visual Studio Code
Steps
- Open the terminal in the folder you want to create new project
- Initialize
Strapi
project by run this commandTerminal window npx create-strapi@latest my-strapi-projectNOTE
Change
my-strapi-project
to your project name - You can select
Login/Sign up
to try theGrowth
plan ofStrapi
or skip it - You can press
Enter
to accept default answers - Run this command to access the project and open with Visual Code
Terminal window cd my-strapi-project & code . - Run this command to start the project and your browser automatically opens a new tab.
Terminal window npm run devNOTE
Change
npm
to your Node.js package manager - You need to create your account and now you can access to the admin panel.
References
Install Strapi
https://slimaeus.github.io/posts/strapi-installation/