create-your-stack 0.0.1 → 0.0.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 +29 -7
- package/bin/create-your-stack +0 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,15 +1,37 @@
|
|
|
1
1
|
# create-your-stack
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A CLI tool to quickly bootstrap a modern Expo app with **Bun**, **Uniwind**, **Convex**, **Clerk**, and **Zustand**.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
## Features
|
|
6
|
+
|
|
7
|
+
- **⚡️ Bun**: Fast JavaScript runtime and package manager
|
|
8
|
+
- **📱 Expo + Expo Router**: File-based routing for React Native
|
|
9
|
+
- **🎨 Uniwind**: Tailwind CSS for React Native
|
|
10
|
+
- **💾 Convex**: Reactive backend-as-a-service
|
|
11
|
+
- **🔐 Clerk**: Authentication and user management
|
|
12
|
+
- **🐻 Zustand**: Small, fast, and scalable state management
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
8
15
|
|
|
9
|
-
|
|
16
|
+
Run the following command to create a new project:
|
|
10
17
|
|
|
11
18
|
```bash
|
|
12
|
-
|
|
19
|
+
# Using Bun (Recommended)
|
|
20
|
+
bunx create-your-stack my-app
|
|
21
|
+
|
|
22
|
+
# Using npx
|
|
23
|
+
npx create-your-stack my-app
|
|
13
24
|
```
|
|
14
25
|
|
|
15
|
-
|
|
26
|
+
### Options
|
|
27
|
+
|
|
28
|
+
| Flag | Description | Default |
|
|
29
|
+
|------|-------------|---------|
|
|
30
|
+
| `--dry-run` | Print commands without executing them | `false` |
|
|
31
|
+
| `--no-clerk` | Skip installing Clerk authentication | `false` |
|
|
32
|
+
| `--no-convex` | Skip installing Convex backend | `false` |
|
|
33
|
+
| `--no-uniwind` | Skip installing Uniwind (Tailwind CSS) | `false` |
|
|
34
|
+
|
|
35
|
+
## Prerequisites
|
|
36
|
+
|
|
37
|
+
- [Bun](https://bun.com) must be installed on your machine.
|
package/bin/create-your-stack
CHANGED