create-next-pro-stack 1.0.0 → 1.0.1
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 +9 -22
- package/package.json +1 -1
- package/templates/page-files.js +0 -3
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
**BlitzStack** is a powerful, professional-grade CLI tool designed to scaffold high-performance Next.js applications in seconds. It comes pre-configured with industry-standard patterns, a premium UI/UX structure, and a robust state-management architecture.
|
|
4
4
|
|
|
5
|
-
Built by **[Jahirul](https://github.com/jahirul077)** for developers who value speed, consistency, and best practices.
|
|
5
|
+
Built by **[Jahirul Islam](https://github.com/jahirul077)** for developers who value speed, consistency, and best practices.
|
|
6
6
|
|
|
7
7
|
---
|
|
8
8
|
|
|
@@ -36,38 +36,25 @@ BlitzStack automatically installs and configures the following professional pack
|
|
|
36
36
|
|
|
37
37
|
## 🚀 Getting Started
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
You don't need to install anything globally. Simply run the command below using **npx** to start your next big project:
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
### 1. Create a New Project
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
|
|
45
|
-
git clone <your-repo-link>
|
|
46
|
-
|
|
47
|
-
# Navigate to the folder
|
|
48
|
-
cd create-next-stack-CLI-Tools
|
|
49
|
-
|
|
50
|
-
# Link the tool globally
|
|
51
|
-
npm link
|
|
44
|
+
npx create-next-pro-stack my-awesome-project
|
|
52
45
|
```
|
|
53
46
|
|
|
54
|
-
### 2.
|
|
47
|
+
### 2. Manual Installation (Optional)
|
|
55
48
|
|
|
56
|
-
|
|
49
|
+
If you want to install the CLI tool globally on your system:
|
|
57
50
|
|
|
58
51
|
```bash
|
|
52
|
+
npm install -g create-next-pro-stack
|
|
53
|
+
|
|
54
|
+
# Then run:
|
|
59
55
|
create-next-pro-stack my-awesome-project
|
|
60
56
|
```
|
|
61
57
|
|
|
62
|
-
### 3. Development
|
|
63
|
-
|
|
64
|
-
The tool will automatically:
|
|
65
|
-
|
|
66
|
-
- Initialize the Next.js app.
|
|
67
|
-
- Install all dependencies.
|
|
68
|
-
- Apply the professional folder structure.
|
|
69
|
-
- **Run the development server (`npm run dev`) automatically.**
|
|
70
|
-
|
|
71
58
|
---
|
|
72
59
|
|
|
73
60
|
## 📁 Folder Structure Overview
|
package/package.json
CHANGED
package/templates/page-files.js
CHANGED
|
@@ -153,9 +153,6 @@ export default function OverviewPage() {
|
|
|
153
153
|
return (
|
|
154
154
|
<div className="flex flex-col items-center justify-center min-h-[60vh] gap-4">
|
|
155
155
|
<h1 className="text-4xl font-bold tracking-tight">Overview Page </h1>
|
|
156
|
-
<Link href="/" className="text-primary hover:underline font-medium italic text-xl">
|
|
157
|
-
Go to Home
|
|
158
|
-
</Link>
|
|
159
156
|
</div>
|
|
160
157
|
);
|
|
161
158
|
}`,
|