create-aponia 0.0.0 → 0.1.0
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 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# create-aponia
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/create-aponia)
|
|
4
|
+
|
|
3
5
|
Create a Bun-first Aponia application:
|
|
4
6
|
|
|
5
7
|
```bash
|
|
@@ -7,3 +9,10 @@ bun create aponia my-api
|
|
|
7
9
|
bun create aponia my-api --skip-install
|
|
8
10
|
bun create aponia my-api --dry-run
|
|
9
11
|
```
|
|
12
|
+
|
|
13
|
+
This package is the `bun create` entrypoint and delegates to the published
|
|
14
|
+
[`@aponiajs/cli`](https://www.npmjs.com/package/@aponiajs/cli) generator.
|
|
15
|
+
|
|
16
|
+
[npm package](https://www.npmjs.com/package/create-aponia) ·
|
|
17
|
+
[complete CLI guide](../../docs/cli.md) ·
|
|
18
|
+
[complete package catalog](../../docs/packages.md)
|