create-flutterinit 0.1.0 → 0.1.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 +47 -0
- package/dist/index.js +8643 -0
- package/package.json +4 -5
- package/bin/index.ts +0 -3
package/README.md
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<img src="public/logo.svg" width="120" alt="FlutterInit Logo" />
|
|
3
|
+
|
|
4
|
+
<br />
|
|
5
|
+
|
|
6
|
+
<h1><b>FlutterInit</b></h1>
|
|
7
|
+
<p><i>The High-Performance Scaffolding Engine for Modern Flutter Apps</i></p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<img src="https://img.shields.io/npm/v/create-flutterinit.svg?style=flat-square&color=6366f1" alt="npm version" />
|
|
11
|
+
<img src="https://img.shields.io/badge/Build-Passing-2ecc71?style=flat-square&logo=github-actions&logoColor=white" alt="Build Status" />
|
|
12
|
+
<a href="https://github.com/Arjun544/flutter_init/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-10b981?style=flat-square" alt="License" /></a>
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
<br />
|
|
16
|
+
|
|
17
|
+
<table border="0">
|
|
18
|
+
<tr>
|
|
19
|
+
<td align="center">
|
|
20
|
+
<a href="https://flutterinit.com/">
|
|
21
|
+
<img src="https://img.shields.io/badge/🚀_Web_Generator-6366f1?style=for-the-badge&logoColor=white" height="40" alt="Web Generator" />
|
|
22
|
+
</a>
|
|
23
|
+
</td>
|
|
24
|
+
<td width="20"></td>
|
|
25
|
+
<td align="center">
|
|
26
|
+
<a href="docs/getting-started.md">
|
|
27
|
+
<img src="https://img.shields.io/badge/📚_Documentation-34495e?style=for-the-badge&logoColor=white" height="40" alt="Read Docs" />
|
|
28
|
+
</a>
|
|
29
|
+
</td>
|
|
30
|
+
</tr>
|
|
31
|
+
</table>
|
|
32
|
+
</div>
|
|
33
|
+
|
|
34
|
+
---
|
|
35
|
+
|
|
36
|
+
**FlutterInit CLI** (`create-flutterinit`) is an interactive terminal tool that scaffolds production-ready Flutter applications. It bypasses the boilerplate, instantly generating a clean folder structure with your preferred architecture, state management, and backend pre-integrated.
|
|
37
|
+
|
|
38
|
+
## ⚡ Quick Start (CLI)
|
|
39
|
+
|
|
40
|
+
You don't need to install anything globally. Run the initializer directly in your terminal:
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
# Using npm/npx (Standard Node)
|
|
44
|
+
npx create-flutterinit
|
|
45
|
+
|
|
46
|
+
# Using Bun (Faster startup)
|
|
47
|
+
bunx create-flutterinit
|