Skip to content

Zenduty/create-react-app

 
 

Repository files navigation

Zenduty CRA

Create React App customized for the following Zenduty clients:

  • Landing Page
  • Dashboard (Main App)

The Zenduty client also utilizes craco for easy modifications to the CRA without actually changing code here. Always check for solutions in craco before modifying this CRA.

Overview

In order to include any new apps, we must modify the webpack settings that reside in the packages/react-scripts/ folder.

Modifications

The following modifications have been made to accomodate the Zenduty clients.

Do not forget to add inline comments in the code also to notate the modifications.

packages/react-scripts/config/paths.js

  • Added dashboardHtml, dashboardIndexJs, landingpageHtml, landingpageIndexJs props to module.exports to specify the location of the respective app's JS and HTML files.

packages/react-scripts/config/webpack.config.js

  • Modified entry webpack config to support multiple apps.
  • Modified output.filename to support unique file names for multiple apps' outputs in development mode.
  • Rewrote HtmlWebpackPlugin plugins to produce independent HTML outputs for each app.

Customizing

Customizing the CRA is equivalent to customizing a webpack config. Refer to the following for any config related queries:

Adding a new React app

Follow these steps to add a new app for development and building:

Changes inside the Django client

  1. Create new folder: Create a new folder by the app's name, e.g. newapp, in the client/src/ folder of the Django app.
  2. Create entry js: Create an index.js file inside the new folder. Refer to client/src/dashboard/index.js for the content.
  3. Create entry html: Create a newapp.html file inside the client/public/ folder. Refer to client/public/dashboard.html for the content.

Changes inside this repo's packages/react-scripts/config/paths.js

  1. Create path references: Add newappJs and newappHtml props to module.exports to specify the location of the new app's JS and HTML files. (Note: There are 3 module.exports definitions. You only need to modify the one which has the path references to the other Zenduty client apps already.)

Changes inside this repo's packages/react-scripts/config/webpack.config.js

  1. Add app entry: Add the new app's js reference to the webpack entry prop. You can refer to the other members of this prop and modify the content appropriately to refer to the new app's JS path. This will allow webpack to source and build the JS code of your new app.
  2. Add app HTML plugin: Create a new HtmlWebpackPlugin in the webpack plugins prop. You can copy the contents of any other HTML webpack plugin and modify the content appropriately to refer to the new app's HTML path. This will allow webpack to build an HTML output that sources the new app's JS.

Publishing react-scripts to npm

  1. Bump up the package version inside packages/react-scripts/package.json. E.g. 2.1.9 --> 2.1.10
  2. Commit the code changes.
  3. cd to the packages/react-scripts/ inside your terminal and publish the package to npm.

Update the Django client

  1. Update the package version of zenduty-react-scripts inside client/package.json to the new bumped up version.
  2. Update the npm packages with npm i.

You are good to go!



Original Readme from CRA below



Create React App Build Status PRs Welcome

Create React apps with no build configuration.

Create React App works on macOS, Windows, and Linux.
If something doesn’t work, please file an issue.

Quick Overview

npx create-react-app my-app
cd my-app
npm start

(npx comes with npm 5.2+ and higher, see instructions for older npm versions)

Then open http://localhost:3000/ to see your app.
When you’re ready to deploy to production, create a minified bundle with npm run build.

npm start

Get Started Immediately

You don’t need to install or configure tools like Webpack or Babel.
They are preconfigured and hidden so that you can focus on the code.

Just create a project, and you’re good to go.

Creating an App

You’ll need to have Node 8.10.0 or later on your local development machine (but it’s not required on the server). You can use nvm (macOS/Linux) or nvm-windows to easily switch Node versions between different projects.

To create a new app, you may choose one of the following methods:

npx

npx create-react-app my-app

(npx comes with npm 5.2+ and higher, see instructions for older npm versions)

npm

npm init react-app my-app

npm init <initializer> is available in npm 6+

Yarn

yarn create react-app my-app

yarn create is available in Yarn 0.25+

It will create a directory called my-app inside the current folder.
Inside that directory, it will generate the initial project structure and install the transitive dependencies:

my-app
├── README.md
├── node_modules
├── package.json
├── .gitignore
├── public
│   ├── favicon.ico
│   ├── index.html
│   └── manifest.json
└── src
    ├── App.css
    ├── App.js
    ├── App.test.js
    ├── index.css
    ├── index.js
    ├── logo.svg
    └── serviceWorker.js

No configuration or complicated folder structures, just the files you need to build your app.
Once the installation is done, you can open your project folder:

cd my-app

Inside the newly created project, you can run some built-in commands:

npm start or yarn start

Runs the app in development mode.
Open http://localhost:3000 to view it in the browser.

The page will automatically reload if you make changes to the code.
You will see the build errors and lint warnings in the console.

Build errors

npm test or yarn test

Runs the test watcher in an interactive mode.
By default, runs tests related to files changed since the last commit.

Read more about testing.

npm run build or yarn build

Builds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.

Your app is ready to be deployed.

User Guide

You can find detailed instructions on using Create React App and many tips in its documentation.

How to Update to New Versions?

Please refer to the User Guide for this and other information.

Philosophy

  • One Dependency: There is just one build dependency. It uses Webpack, Babel, ESLint, and other amazing projects, but provides a cohesive curated experience on top of them.

  • No Configuration Required: You don't need to configure anything. A reasonably good configuration of both development and production builds is handled for you so you can focus on writing code.

  • No Lock-In: You can “eject” to a custom setup at any time. Run a single command, and all the configuration and build dependencies will be moved directly into your project, so you can pick up right where you left off.

What’s Included?

Your environment will have everything you need to build a modern single-page React app:

  • React, JSX, ES6, TypeScript and Flow syntax support.
  • Language extras beyond ES6 like the object spread operator.
  • Autoprefixed CSS, so you don’t need -webkit- or other prefixes.
  • A fast interactive unit test runner with built-in support for coverage reporting.
  • A live development server that warns about common mistakes.
  • A build script to bundle JS, CSS, and images for production, with hashes and sourcemaps.
  • An offline-first service worker and a web app manifest, meeting all the Progressive Web App criteria. (Note: Using the service worker is opt-in as of [email protected] and higher)
  • Hassle-free updates for the above tools with a single dependency.

Check out this guide for an overview of how these tools fit together.

The tradeoff is that these tools are preconfigured to work in a specific way. If your project needs more customization, you can "eject" and customize it, but then you will need to maintain this configuration.

Popular Alternatives

Create React App is a great fit for:

  • Learning React in a comfortable and feature-rich development environment.
  • Starting new single-page React applications.
  • Creating examples with React for your libraries and components.

Here are a few common cases where you might want to try something else:

  • If you want to try React without hundreds of transitive build tool dependencies, consider using a single HTML file or an online sandbox instead.

  • If you need to integrate React code with a server-side template framework like Rails, Django or Symfony, or if you’re not building a single-page app, consider using nwb, or Neutrino which are more flexible. For Rails specifically, you can use Rails Webpacker. For Symfony, try Symfony's Webpack Encore.

  • If you need to publish a React component, nwb can also do this, as well as Neutrino's react-components preset.

  • If you want to do server rendering with React and Node.js, check out Next.js or Razzle. Create React App is agnostic of the backend, and just produces static HTML/JS/CSS bundles.

  • If your website is mostly static (for example, a portfolio or a blog), consider using Gatsby instead. Unlike Create React App, it pre-renders the website into HTML at the build time.

  • Finally, if you need more customization, check out Neutrino and its React preset.

All of the above tools can work with little to no configuration.

If you prefer configuring the build yourself, follow this guide.

Contributing

We'd love to have your helping hand on create-react-app! See CONTRIBUTING.md for more information on what we're looking for and how to get started.

React Native

Looking for something similar, but for React Native?
Check out Expo CLI.

Acknowledgements

We are grateful to the authors of existing related projects for their ideas and collaboration:

License

Create React App is open source software licensed as MIT.

About

Set up a modern web app by running one command.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.2%
  • Shell 1.3%
  • TypeScript 0.2%
  • HTML 0.1%
  • CSS 0.1%
  • AppleScript 0.1%