csprclick-react template for create-react-app
Install
First, clone this repository:
git clone https://github.com/make-software/cra-template-csprclick-react
So far, we have dependencies with private packages in the GitHub Registry.
For this reason, you need to run the npm login command to get access. You'll be asked for a username
and password. Use a "Personal Access Token (classic)" with read:packages
permission as the password.
npm login --scope=@make-software --auth-type=legacy --registry=https://npm.pkg.github.com
Next, type the following command to create a new React project based on the CSPR.click template:
npx create-react-app my-app --template file:./cra-template-csprclick-react
Go to the newly created project directory and run the app. In this case it will be "my-app"
cd my-app
npm start