Designing web APIs with Strapi get started with the Strapi headless CMS by building a complete learning management system API

Leverage the power of Strapi to build self-hosted, customizable, and performant content APIs Key Features Discover how Strapi can help you build APIs quickly and focus on your products and features Learn how to put Strapi into practice by implementing it in real-world scenarios Understand how to use...

Descripción completa

Detalles Bibliográficos
Otros Autores: Elshafie, Khalid, author (author), Haider, Mozafar, author
Formato: Libro electrónico
Idioma:Inglés
Publicado: Birmingham ; Mumbai : Packt Publishing [2022]
Materias:
Ver en Biblioteca Universitat Ramon Llull:https://discovery.url.edu/permalink/34CSUC_URL/1im36ta/alma991009652817806719
Tabla de Contenidos:
  • Cover
  • Title Page
  • Copyright and Credits
  • Contributors
  • Table of Contents
  • Preface
  • Section 1: Understanding Strapi
  • Chapter 1: An Introduction to Strapi
  • What is Strapi?
  • Why use Strapi? (The benefits of Strapi)
  • Open source Node.js
  • Database-agnostic
  • Customizable (extendable)
  • RESTful and GraphQL
  • Users and permissions
  • Preparing the development environment
  • Installing Node.js
  • Installing Visual Studio Code (optional)
  • Installing Yarn
  • Installing Docker (optional)
  • Installing Postman
  • Creating a Strapi application
  • Overview of the admin panel
  • Understanding server scripts
  • The develop script
  • The start script
  • The build script
  • The Strapi script
  • Summary
  • Chapter 2: Building Our First API
  • Exploring the project structure of a Strapi application
  • The commands to run Strapi
  • The project structure
  • Under the hood
  • the components that make up Strapi
  • Defining the API requirements
  • Creating our first content-type
  • a classroom
  • Using the Strapi CLI instead of the admin panel
  • Clarifying Strapi terminology
  • Content-types, resources, object types, and models
  • Interacting with the Strapi API
  • Setting permissions
  • What did we just create?
  • Understanding the makeup of a Strapi API
  • Routes, controllers, services, and models
  • Content-types in code
  • Summary
  • Chapter 3: Strapi Content-Types
  • What is the Content-Type Builder plugin?
  • Creating and managing content-types
  • Creating a title field
  • Creating a slug field
  • Creating a type field
  • Creating url and contents fields
  • Understanding relations in Strapi
  • One-way
  • One-to-one
  • One-to-many
  • Many-to-one
  • Many-to-many
  • Many-way
  • Creating a Tutorial and Classroom relation
  • Creating a tutorial from the admin panel
  • Interacting with the API endpoints from Postman
  • Differences between SINGLE TYPES and COMPONENTS
  • Creating components
  • Summary
  • Chapter 4: An Overview of the Strapi Admin Panel
  • Navigating around the admin panel
  • Content Manager
  • PLUGINS
  • GENERAL
  • Marketplace
  • Plugins
  • Settings
  • Managing admin users
  • The difference between Users and admin users
  • Creating new admin panel users
  • Managing admin panel roles
  • Managing content effectively
  • Searching and filtering to query our data
  • Customizing the table view
  • Customizing the details view
  • Using the Media Library
  • Media types in API responses
  • Summary
  • Section 2: Diving Deeper into Strapi
  • Chapter 5: Customizing Our API
  • The routes
  • where it all starts
  • The default routes
  • Disabling a core route
  • Adding a new route
  • Handling routes with controllers
  • Adding a new controller handler for our endpoint
  • Controllers
  • it's all about context
  • Reusing logic with Strapi services
  • Communicating with the database using the Entity Service API
  • Returning a unified response
  • Populating relationships
  • Sanitizing data
  • hiding passwords