02Geek HTML5 and JavaScript, TypeScript, React, Flash, ActionScript online School
Previous VideoPrevious Video

Configuring our Project with Create-React-App

Getting Started with Create-React-App: A Beginner's Guide

Create-React-App is a powerful tool that allows developers to quickly set up a new React project with all the essentials already in place. Instead of spending hours configuring Webpack, Babel, and other tools, Create-React-App provides a boilerplate with a pre-configured environment, allowing developers to focus on writing their applications. In this video, we explore how to use Create-React-App and dive into the basics of setting up a modern React development environment. Below is an expanded guide on the topics covered.

What is Create-React-App and Why Use It?

Create-React-App (CRA) is an officially supported way to create single-page React applications with zero build configuration. When developers first start working with React, they often need to understand and configure various tools like Webpack, Babel, and ESLint. CRA abstracts away the setup process, providing a working development environment without worrying about those intricate configurations. This can be particularly useful for developers who are just starting their journey with React, as it removes barriers to getting started.

The command to start a new React project with Create-React-App is:

npx create-react-app my-app

This command installs all the dependencies, sets up a project directory structure, and initializes files, creating a solid foundation on which to build your app. As a result, developers save time and can begin coding immediately.

Benefits of Using Create-React-App

  • Quick Setup: Instead of spending hours setting up build configurations, CRA allows developers to spin up a project in minutes. This helps you focus on writing code rather than figuring out complex build tools.
  • Best Practices by Default: CRA ensures your project follows industry-standard best practices. It integrates tools like ESLint for linting and Jest for testing by default.
  • Optimized Development Workflow: CRA comes with Hot Module Replacement (HMR), allowing developers to see the changes they make in real time without needing a full refresh. This feature not only saves time but also ensures that application states remain intact during updates.

Project Structure and Configuration

After running Create-React-App, you will see a directory structure with folders like src and public. The src folder contains all the JavaScript files where you will write the core components of your application. The public folder includes the HTML template that renders your application. Some key files generated by CRA are:

  • index.html: This is the main HTML file that acts as the container for your React components.
  • index.js: The entry point of your React application, where components are rendered and attached to the DOM.
  • App.js: A simple default component created by CRA. This is the initial canvas for developers to build upon.

The CRA also creates a package.json file that holds metadata about the project, as well as information about installed dependencies and scripts. The react-scripts package is responsible for abstracting the build configurations, allowing developers to focus solely on writing application logic.

Hot Reloading and Fast Feedback Loop

One of the most powerful features of CRA is Hot Reloading. When changes are made to the JavaScript or CSS, they automatically appear in the browser without a refresh. This ensures developers are in a fast feedback loop, where they can see the effects of their modifications immediately, without losing the current state of the application.

This feature is made possible through webpack-dev-server, which is set up by CRA to automatically bundle and serve the project in development mode. The dev server watches for changes and injects the updated modules directly into the running application.

Managing Dependencies with npm or Yarn

When working with Create-React-App, managing dependencies is straightforward. CRA abstracts away many of the complexities of managing Webpack, Babel, and other dependencies by providing them under the react-scripts package. However, if you want to install additional libraries, such as Redux, React Router, or a UI library like Material-UI, you can do so using npm or yarn commands:

npm install redux react-redux

By doing so, you add these packages to your project’s node_modules, and they become available to use throughout your application.

Setting Expectations for Development Environment

To follow along with this course and use CRA effectively, there are a few prerequisites that should be in place:

  • Node.js: CRA requires Node.js, a JavaScript runtime that helps manage the dependencies in your project. At the time of recording, version 7.4 is recommended, but CRA supports newer versions as well.
  • npm: The Node Package Manager (npm) is required for managing project dependencies. Alternatively, you can use Yarn, which is also supported by CRA.

To verify that Node and npm are installed, use:

node -v
npm -v

These commands should output the installed versions, ensuring that your system is properly set up to begin developing with CRA.

Starting and Building a Project

After generating a project with Create-React-App, two important scripts are available for you:

  • npm start: Runs the project in development mode, opening it in your default browser at localhost:3000. Changes made to the project will automatically reflect in the browser.
  • npm run build: Compiles the project for production, creating optimized static files for deployment. The output files are saved to the build folder, which can be served on any web server.

Building Your First React Component

Once you have your environment set up with Create-React-App, the next step is to start building components. In React, components are the building blocks of an application. The video dives into creating a simple App component that renders a "Hello World" message to the DOM. As you build your first React component, you start understanding the basics of component-based architecture, the way data flows in React, and how you can split your application into smaller, reusable pieces.

Understanding Reducers in Redux

The course also touches on the basics of Redux, particularly focusing on reducers. Redux is a predictable state container for JavaScript applications and is commonly used with React to manage the application's state. A reducer in Redux is a pure function that takes the current state and an action as arguments and returns a new state.

For new developers, understanding how reducers work is key to grasping the data flow in Redux. In this context, Create-React-App acts as a starting point, providing a stable environment in which to implement state management through Redux.

Creating a Seamless Development Experience

A major takeaway for new developers starting with CRA is its focus on simplicity and best practices. The video highlights the importance of focusing on writing quality code instead of dealing with mundane configurations. With CRA, developers are empowered to:

  • Experiment Quickly: Developers can create multiple projects with CRA to experiment with different features, libraries, and configurations, providing a low-risk environment to learn.
  • Learn Modern JavaScript: CRA supports the latest JavaScript features (ES6/ES7), which means developers also get a chance to learn and work with the most modern syntax. This includes features like arrow functions, destructuring, and async/await.

Final Thoughts

Create-React-App is an excellent starting point for anyone looking to learn React and start building applications without the friction of configuring build tools. It abstracts away the complex aspects of the environment setup, allowing developers to focus on learning the core concepts of React, experimenting with different tools, and building effective user interfaces. As you continue through the course, you will also learn how to integrate Redux for state management, giving your applications a predictable state flow and scalability.

Whether you are new to React or already have some experience, Create-React-App is a powerful ally in your developer journey. The ability to quickly create new projects, experiment with features, and work with the latest JavaScript tools makes CRA invaluable in accelerating learning and productivity.


If you're ready to continue, let's start building your first components and integrating state management, making your applications dynamic and responsive.

Happy coding!

Configuring our Project with Create-React-App

Learn how to use create-react-app to quickly set up a React project. This video explains the benefits and step-by-step process of using create-react-app.

06:57

Creating a React Component

Quick recap on creating a React component using JSX and ES6 for beginners.

09:05

Working with the React state

Learn the basics of React state, its limitations, and how to use it effectively before diving into Redux.

08:23

Creating our First Reducer

Learn how to create your first reducer in Redux and understand the foundational concepts behind state management.

05:57

Testing with JEST

Learn how to write automated tests using JEST for Redux, ensuring your application remains stable and reliable.

06:45

Integrating Redux

Learn how to integrate the Redux library by creating a store, utilizing the getState method, and dispatching actions to manage state effectively.

08:00