@asynx/create-asynx-next-app 1.0.0 → 1.0.2
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 +35 -84
- package/package.json +10 -4
package/README.md
CHANGED
|
@@ -1,111 +1,62 @@
|
|
|
1
|
-
|
|
1
|
+
> ⚡ Create scalable Next.js apps using opinionated App Router templates — by **Asynx Devs Pvt Ltd**
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## Why create-asynx-next-app?
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
`create-next-app` gives you a starting point.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
`create-asynx-next-app` gives you a **direction**.
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
This CLI scaffolds **real-world Next.js architectures** — from simple MVPs to
|
|
10
|
+
SaaS-grade applications — without locking you into any framework or vendor.
|
|
10
11
|
|
|
11
|
-
|
|
12
|
-
* ✅ **TypeScript by default**
|
|
13
|
-
* ✅ **Multiple templates**
|
|
14
|
-
* Simple (Landing pages, MVPs)
|
|
15
|
-
* Moderate (Dashboards, content platforms)
|
|
16
|
-
* SaaS (Scalable, domain-driven architecture)
|
|
17
|
-
* ✅ **Predefined utilities included**
|
|
18
|
-
* ✅ **No vendor lock-in**
|
|
19
|
-
* ✅ **`pnpm` / `npm` / `npx` supported**
|
|
20
|
-
* ✅ **Cross-platform (Windows, macOS, Linux)**
|
|
21
|
-
|
|
22
|
-
-----
|
|
23
|
-
|
|
24
|
-
## 🚀 Usage
|
|
25
|
-
|
|
26
|
-
### Using pnpm (recommended)
|
|
12
|
+
## Quick Start
|
|
27
13
|
|
|
28
14
|
```bash
|
|
29
|
-
|
|
15
|
+
npx create-asynx-next-app my-app
|
|
16
|
+
cd my-app
|
|
17
|
+
pnpm dev
|
|
30
18
|
```
|
|
31
19
|
|
|
32
|
-
|
|
20
|
+
or using pnpm
|
|
33
21
|
|
|
34
22
|
```bash
|
|
35
|
-
|
|
23
|
+
pnpm create asynx-next-app my-app
|
|
36
24
|
```
|
|
37
25
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
## 🧩 Templates
|
|
41
|
-
|
|
42
|
-
| Template | Best for: |
|
|
43
|
-
| :--- | :--- |
|
|
44
|
-
| **Simple App** | Landing pages, Small tools, MVPs |
|
|
45
|
-
| **Moderate App** | Dashboards, Content platforms, Early-stage startups |
|
|
46
|
-
| **SaaS / Complex App** | SaaS products, Multi-tenant systems, Role-based platforms |
|
|
26
|
+
## Template Selection
|
|
47
27
|
|
|
48
|
-
|
|
28
|
+
During setup, you will be prompted to choose a template:
|
|
49
29
|
|
|
50
|
-
|
|
30
|
+
- **Simple** — landing pages, MVPs, small tools
|
|
31
|
+
- **Moderate** — dashboards, content platforms, startups
|
|
32
|
+
- **SaaS** — scalable, domain-driven architecture for real products
|
|
51
33
|
|
|
52
|
-
|
|
34
|
+
Templates differ only in structure — you own all the code.
|
|
53
35
|
|
|
54
36
|
```
|
|
55
|
-
src/
|
|
56
|
-
├─ app/
|
|
57
|
-
├─ components/
|
|
58
|
-
├─ lib/
|
|
59
|
-
├─ utils/
|
|
60
|
-
└─ types/
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
With route groups such as:
|
|
64
37
|
|
|
65
|
-
|
|
66
|
-
* `(auth)`
|
|
67
|
-
* `(dashboard)`
|
|
38
|
+
## No Vendor Lock-in
|
|
68
39
|
|
|
69
|
-
|
|
40
|
+
This tool is used **only at project creation time**.
|
|
70
41
|
|
|
71
|
-
|
|
42
|
+
- No Asynx packages are required at runtime
|
|
43
|
+
- No hidden dependencies
|
|
44
|
+
- You can delete this CLI after scaffolding
|
|
72
45
|
|
|
73
|
-
|
|
46
|
+
Your project is a standard Next.js app.
|
|
74
47
|
|
|
75
|
-
|
|
76
|
-
* Relative time helpers
|
|
77
|
-
* Number & currency formatting
|
|
78
|
-
* String utilities
|
|
79
|
-
* Async helpers
|
|
48
|
+
## Who is this for?
|
|
80
49
|
|
|
81
|
-
|
|
50
|
+
- Founders building MVPs
|
|
51
|
+
- Startups building dashboards or SaaS apps
|
|
52
|
+
- Developers who want structure without overengineering
|
|
53
|
+
- Teams tired of rebuilding the same Next.js setup
|
|
82
54
|
|
|
83
|
-
|
|
55
|
+
## Support & Feedback
|
|
84
56
|
|
|
85
|
-
|
|
57
|
+
If you find issues or have ideas:
|
|
86
58
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
* Clean, understandable code
|
|
92
|
-
|
|
93
|
-
> You can delete this CLI after creation — your project will continue to work.
|
|
94
|
-
|
|
95
|
-
-----
|
|
96
|
-
|
|
97
|
-
## 🤝 Contributing
|
|
98
|
-
|
|
99
|
-
Contributions are welcome\! Please read:
|
|
100
|
-
|
|
101
|
-
* [CONTRIBUTING.md](https://www.google.com/search?q=CONTRIBUTING.md)
|
|
102
|
-
* [CODE\_OF\_CONDUCT.md](https://www.google.com/search?q=CODE_OF_CONDUCT.md)
|
|
103
|
-
|
|
104
|
-
-----
|
|
105
|
-
|
|
106
|
-
## 🏢 About Asynx Devs Pvt Ltd
|
|
107
|
-
|
|
108
|
-
Asynx Devs builds scalable web products, internal tools, and SaaS platforms.
|
|
109
|
-
|
|
110
|
-
* 🌐 **Website:** [https://asynx.in](https://asynx.in)
|
|
111
|
-
* 🐙 **GitHub:** [https://github.com/Asynx-Pvt-Ltd](https://github.com/Asynx-Pvt-Ltd)
|
|
59
|
+
- Reach out via https://asynx.in/contact
|
|
60
|
+
- 🐙 GitHub: https://github.com/Asynx-Pvt-Ltd/create-asynx-next-app
|
|
61
|
+
- Improvements, suggestions, and feedback are welcome
|
|
62
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asynx/create-asynx-next-app",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "Opinionated Next.js App Router scaffolder by Asynx Devs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,10 +12,16 @@
|
|
|
12
12
|
"prepublishOnly": "pnpm build"
|
|
13
13
|
},
|
|
14
14
|
"keywords": [
|
|
15
|
+
"next.js templates",
|
|
15
16
|
"nextjs",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"",
|
|
17
|
+
"create-next-app",
|
|
18
|
+
"nextjs-cli",
|
|
19
|
+
"nextjs-app-router",
|
|
20
|
+
"scaffold",
|
|
21
|
+
"boilerplate",
|
|
22
|
+
"starter",
|
|
23
|
+
"saas",
|
|
24
|
+
"mvp",
|
|
19
25
|
"asynx"
|
|
20
26
|
],
|
|
21
27
|
"repository": {
|