https://github.com/tobua/cra-template-learn
Create React App template to learn Web Development with Tailwind
https://github.com/tobua/cra-template-learn
create-react-app learn learning react study tailwind template
Last synced: 3 months ago
JSON representation
Create React App template to learn Web Development with Tailwind
- Host: GitHub
- URL: https://github.com/tobua/cra-template-learn
- Owner: tobua
- Created: 2022-01-11T12:06:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-11T18:48:13.000Z (over 3 years ago)
- Last Synced: 2025-02-15T07:16:54.768Z (3 months ago)
- Topics: create-react-app, learn, learning, react, study, tailwind, template
- Language: JavaScript
- Homepage: https://tobua.github.io/cra-template-learn
- Size: 174 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
![]()
# cra-template-learn
Create React App template to learn Web Development with Tailwind.
## Goals
This template is a slimmed down version of the default CRA template with Tailwind built in. The template is best suited for people wanting to learn Web Development by focusing on setting up a single page without any unnecessary best practices like testing, PWA and device specific optimizations. The following documentations are useful to learn the basics needed to work with this template.
- [React](https://reactjs.org) Documentation
- [Tailwind](https://tailwindcss.com) Documentation
- [Create React App](https://create-react-app.dev) Documentation## Requirements
To get started with Web Development install [node](https://nodejs.org) and an editor like [VS Code](https://code.visualstudio.com).
## Installation
Open a Terminal and type the following:
```
npx create-react-app my-app --template cra-template-learn
```Then move into the folder with the app that was just created using `cd my-app` and start the development server by running `npm start`. `my-app` can be replaced with the desired name for your application.