WordPress REST API as a Back-end with React and Docker (Part 2)

This page summarizes the projects mentioned and recommended in the original post on dev.to

Our great sponsors
  • SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • create-react-app

    Set up a modern web app by running one command.

    To create a new React single-page application, let's use create-react-app, which is what's recommended in the official docs and is an opinionated, batteries included tool to quickly scaffold React applications. You can add it globally with the usual yarn global add create-react-app or npm install -G create-react-app, but I don't want it to stay on my computer since I will only use the command once per project, so I'll use npx to execute the binary from a temporary location and then remove it.

  • npx

    Discontinued execute npm package binaries (moved)

    To create a new React single-page application, let's use create-react-app, which is what's recommended in the official docs and is an opinionated, batteries included tool to quickly scaffold React applications. You can add it globally with the usual yarn global add create-react-app or npm install -G create-react-app, but I don't want it to stay on my computer since I will only use the command once per project, so I'll use npx to execute the binary from a temporary location and then remove it.

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts