create-revo 1.2.1 β 1.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +78 -4
- package/package.json +2 -2
- package/template/README.md +1 -2
package/README.md
CHANGED
|
@@ -1,5 +1,79 @@
|
|
|
1
|
-
|
|
2
|
-
Uses Vite
|
|
1
|
+
# Revo - Fast & Efficient React Project Setup
|
|
3
2
|
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
**Revo** is a custom React project setup tool built on top of Vite. Itβs designed to streamline your workflow by providing a clean project structure, pre-configured with **Tailwind CSS** and **Framer Motion**, so you can focus on building amazing applications.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## π Features
|
|
8
|
+
|
|
9
|
+
- **Powered by Vite**: Enjoy blazing-fast builds and an optimized development experience.
|
|
10
|
+
- **Tailwind CSS**: Fully configured for utility-first styling right out of the box.
|
|
11
|
+
- **Framer Motion**: Pre-installed for creating stunning animations with ease.
|
|
12
|
+
- **Better Project Layout**: Thoughtfully organized file structure to keep your code clean and maintainable.
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
|
|
16
|
+
## π¦ What You Get
|
|
17
|
+
|
|
18
|
+
1. **Pre-configured Tailwind CSS** for styling.
|
|
19
|
+
2. **Framer Motion** set up for animations.
|
|
20
|
+
3. **Optimized Vite setup** for fast development and builds.
|
|
21
|
+
4. A clean project directory structure:
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## π οΈ Installation
|
|
26
|
+
|
|
27
|
+
### Prerequisites
|
|
28
|
+
Make sure you have Node.js (>=14.x) and npm/yarn installed.
|
|
29
|
+
|
|
30
|
+
### Create a New Project
|
|
31
|
+
Run the following command to create a new project:
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
npx create-revo [project-name]
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Navigate to Your Project
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
cd [project-name]
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Install Dependencies
|
|
44
|
+
|
|
45
|
+
```
|
|
46
|
+
npm install
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
---
|
|
50
|
+
|
|
51
|
+
## π Getting Started
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### Start the Development Server
|
|
55
|
+
|
|
56
|
+
```
|
|
57
|
+
npm run dev
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
### Build for Production
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
npm run build
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
### Preview Production Build
|
|
67
|
+
|
|
68
|
+
```
|
|
69
|
+
npm run preview
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
## π Feedback & Support
|
|
75
|
+
|
|
76
|
+
If you like Revo or have suggestions for improvement, let me know!
|
|
77
|
+
You can reach out to me on [Twitter](https://twitter.com/MaybeTarun).
|
|
78
|
+
|
|
79
|
+
Happy coding with Revo! π
|
package/package.json
CHANGED
package/template/README.md
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Uses Vite
|
|
1
|
+
Edit it as per your project
|