0.1.0 • Published 7 months ago

scaffoldr-react v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

Getting Started with Create React App

This project was bootstrapped with Create React App.

Table of Contents

  1. Setup HTTPS
  2. Generate Icons and Splash Screens
  3. Available Scripts
  4. Troubleshooting
  5. Learn More

Setup HTTPS

  1. Install mkcert.
  2. Install local CA to available trust stores with the following command.
mkcert -install
  1. Uncomment HTTPS=true in .env to enable HTTPS.
# .env
HTTPS=true
  1. Optional: Add hosts to OS hosts file and setup:ssl script for additional https domains, defaults only to localhost.
    1. Windows: C:\Windows\System32\drivers\etc\hosts
    2. Mac: /etc/hosts
# hosts
127.0.0.1 localhost myhost

# package.json
"setup:ssl": "... localhost myhost",
  1. Run setup script in package.json to set up husky and ssl certificates. Must generate the ssl certificates for https support.
npm run setup
  1. When viewing the application in the browser and shows a warning about untrusted certificates, will need to Trust the local CA.
    1. Warnings
      1. Chrome: "Your connection is not private"
      2. Firefox: "Warning: Potential Security Risk Ahead"

Generate Icons and Splash Screens

  1. Replace ./src/assets/images/icons/logo.svg with application logo.svg.
  2. Run icons script in package.json to generate icons and splash screens. This script uses pwa-asset-generator.
npm run icons

Troubleshooting

Available Scripts

In the project directory, you can run:

npm run analyze

Run source-map-explorer on build folder.

npm run 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!

See the section about deployment for more information.

npm run eject

Note: this is a one-way operation. Once you eject, you can’t go back!

If you aren’t satisfied with the build tool and configuration choices, you can eject at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except eject will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use eject. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

npm run format

Runs prettier on project files.

npm run icons

Runs pwa-asset-generator to generate icons and splash screens for the application.

npm run lint

Runs all other lint scripts together.

npm run lint:eslint

Runs eslint on project files.

npm run lint:stylelint

Runs stylelint on project files.

npm run prebuild

Runs these commands before build script.

npm run serve

Runs serve as http in the build folder.

npm run serve:https

Runs serve as https in the build folder.

npm run setup

Runs all other setup scripts together.

npm run setup:husky

Runs husky to install husky hooks and adds pre-commit hook.

npm run setup:ssl

Runs mkcert to generate ssl certificates for https support.

npm start

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

The page will reload if you make edits.\ You will also see any lint errors in the console.

npm test

Launches the test runner in the interactive watch mode.\ See the section about running tests for more information.

npm test:ci

Launches the test runner for CI environments.

npm test:coverage

Launches the test runner for test coverage.

npm test:debug

Launches the test runner in debug mode.

Learn More

You can learn more in the Create React App documentation.

To learn React, check out the React documentation.