create-rigg 0.0.6 → 0.0.7
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 +7 -7
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
<a href="https://www.npmjs.com/package/create-rigg"><img src="https://img.shields.io/npm/v/create-rigg.svg" alt="Version"></a>
|
|
6
6
|
</p>
|
|
7
7
|
|
|
8
|
-
**
|
|
8
|
+
**Create Node.js projects with a Unified Toolchain**
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
rigg sets up a Node.js TypeScript project with the same opinionated toolchain as [Vite+](https://github.com/voidzero-dev/vite-plus), just without the web parts. Use it for backend projects, CLIs, libraries, scripts. Whatever you're building.
|
|
11
11
|
|
|
12
12
|
## Create a new project with rigg
|
|
13
13
|
|
|
@@ -18,7 +18,7 @@ npm create rigg@latest
|
|
|
18
18
|
|
|
19
19
|
## What you get
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
A project created with rigg gets most of the same tools from the Vite+ toolchain.
|
|
22
22
|
|
|
23
23
|
| Tool | Role |
|
|
24
24
|
| -------------------------------------------------- | ------------------ |
|
|
@@ -32,10 +32,10 @@ The project follows most of the same toolchain as Vite+.
|
|
|
32
32
|
|
|
33
33
|
You can also choose one of the following backend frameworks:
|
|
34
34
|
|
|
35
|
-
- **Hono**
|
|
36
|
-
- **Fastify**
|
|
37
|
-
- **Express**
|
|
38
|
-
- **None**
|
|
35
|
+
- **Hono** - lightweight, modern API framework
|
|
36
|
+
- **Fastify** - fast and low overhead
|
|
37
|
+
- **Express** - familiar and widely supported
|
|
38
|
+
- **None** - where you don't need a backend framework, or you want to pick your own.
|
|
39
39
|
|
|
40
40
|
## Scripts
|
|
41
41
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-rigg",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.0.7",
|
|
4
|
+
"description": "Create Node.js TypeScript projects with a Unified Toolchain",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"backend",
|
|
7
7
|
"create-rigg",
|
|
@@ -26,6 +26,10 @@
|
|
|
26
26
|
],
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"author": "Espen Steen",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/ehs5/rigg.git"
|
|
32
|
+
},
|
|
29
33
|
"bin": {
|
|
30
34
|
"create-rigg": "./dist/index.mjs"
|
|
31
35
|
},
|