📄️ Editor Setup
When working with Create React App, there are several tools you can use to enhance your editing experience and maximize productivity. Let's go through some tips to get your editor set up correctly.
📄️ Developing Components
In a typical app, you have various UI components, each having multiple states. Let's take a basic button component as an example, which can have the following states:
📄️ Analyzing Bundle Size
If you want to understand where the excess code in your JavaScript bundles is coming from, you can use a helpful tool called Source Map Explorer. In this guide, we'll learn how to add Source Map Explorer to your Create React App project and analyze the bundle size.
📄️ HTTPS in Development
When you're developing a website using Create React App (CRA), you might need to serve your pages over HTTPS instead of HTTP. This is especially important if you're using the "proxy" feature to send requests from your development server to an API server that requires HTTPS.