creating SSL certificate
# Install mkcert tool
$brew install mkcert
# Install nss (only needed if you use Firefox)
$brew install nss
# Setup mkcert on your machine (creates a CA)
$mkcert -install
----
# Create .cert directory if it doesn't exist
mkdir -p .cert
# Generate the certificate (ran from the root of this project)
mkcert -key-file ./.cert/key.pem -cert-file ./.cert/cert.pem "localhost"
---
$npx create-react-app appname
$npm start
A.개발관련자료