Website - Getting Started - Documentation - Support
Strapi is an open-source Node.js rich framework for building applications and services.
Strapi enables developers to focus on writing reusable application logic instead of spending time building infrastructure. It is designed for building practical, production-ready Node.js applications in a matter of hours instead of weeks.
The framework sits on top of Koa. Its ensemble of small modules work together to provide simplicity, maintainability, and structural conventions to Node.js applications.
DISCLAIMER: This version is maintained for criticals issues only.
Install the latest stable release with the npm command-line tool:
$ npm install strapi -gWe advise you to use our Studio to build APIs. To do so, you need to create a Strapi account. Go to the Strapi Studio to signup. Studio is dedicated to developers to build applications without writing any single line of code thanks to its powerful set of tools.
After creating an account on the Strapi Studio, you are able to link your machine to your Strapi Studio account to get access to all features offered by the Strapi ecosystem. Use your Strapi account credentials.
$ strapi loginYou now are able to use the Strapi CLI. Simply create your first application and start the server:
$ strapi new <appName>Note that you can generate a dry application using the dry option:
$ strapi new <appName> --dryThis will generate a Strapi application without:
- the built-in
user,emailanduploadAPIs, - the
granthook, - the open-source admin panel,
- the Waterline ORM (
waterlineandblueprintshooks disabled), - the Strapi Studio connection (
studiohook disabled).
This feature allows you to only use Strapi for your HTTP server structure if you want to.
$ cd <appName>
$ strapi startThe default home page is accessible at http://localhost:1337/.
The Strapi ecosystem offers you two possibilities to create a complete RESTful API.
$ strapi generate api <apiName>For example, you can create a car API with a name (name), year (year) and
the license plate (license) with:
$ strapi generate api car name:string year:integer license:stringThe Strapi Studio allows you to easily build and manage your application environment thanks to a powerful User Interface.
Log into the Strapi Studio with your user account (http://studio.strapi.io) and follow the instructions to start the experience.

Strapi comes with a simple but yet powerful dashboard.

