Build Content Management System with React and Node: Beginning Project Setup

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

Civic Auth - Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.
www.civic.com
featured
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
  1. Sass

    Sass makes CSS fun!

    SASS - Sass, or Syntactically Awesome Stylesheets, is a CSS preprocessor that extends the functionality of CSS with features like variables, nesting, and mixins. Integrating Sass with React allows for more maintainable and modular styling by enabling the use of these advanced CSS features within React components.

  2. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.

    Civic Auth logo
  3. redux

    A JS library for predictable global state management

    Redux - is a predictable state container for JavaScript applications, commonly used with React for managing application state. It centralizes the state of an application, making it easier to manage and debug while facilitating predictable behavior through a unidirectional data flow.

  4. Nodemon.io

    Monitor for any changes in your node.js application and automatically restart the server - perfect for development

    We will need some help with the development process, that is why we will use nodemon. Nodemon is a utility tool that automatically monitors changes in your Node.js application's source code and restarts the server whenever it detects any modifications. This tool helps streamline the development process by eliminating the need to manually stop and restart the Node.js server every time you make changes to the code, making it easier to see the effects of your changes immediately. We will use "npm install --save-dev nodemon" to install nodemon to the development section of our project. Also, we need to add a new setting to the scripts part of the package.json file that will start nodemon.

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

  • Organisation of Data Flows

    1 project | dev.to | 15 Apr 2025
  • Arrays: Reduce - Make Something

    1 project | dev.to | 26 Mar 2025
  • How To Use Redux In React JS

    2 projects | dev.to | 11 Mar 2025
  • ExpressJS

    3 projects | dev.to | 22 Feb 2025
  • 3 Node.js Features You Didn’t Know About

    2 projects | dev.to | 21 Jan 2025

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?