raahul-fastify-basic 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 +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# raahul-fastify-basic
|
|
2
2
|
|
|
3
3
|
A command-line tool to quickly generate a production-ready Fastify boilerplate with TypeScript, MongoDB (Mongoose), Socket.io, and Redis integration.
|
|
4
4
|
|
|
@@ -16,14 +16,14 @@ A command-line tool to quickly generate a production-ready Fastify boilerplate w
|
|
|
16
16
|
You can generate a starter project instantly using `npx`:
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npx
|
|
19
|
+
npx raahul-fastify-basic my-fastify-service
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
Alternatively, you can install the package globally:
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
npm install -g
|
|
26
|
-
|
|
25
|
+
npm install -g raahul-fastify-basic
|
|
26
|
+
raahul-fastify-basic my-fastify-service
|
|
27
27
|
```
|
|
28
28
|
|
|
29
29
|
## Running the Generated App
|
package/package.json
CHANGED