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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # create-fastify-basic
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 create-fastify-basic my-fastify-service
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 create-fastify-basic
26
- create-fastify-basic my-fastify-service
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raahul-fastify-basic",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "CLI tool to generate a starter Fastify service application with MongoDB, Socket.io, and TypeScript.",
5
5
  "main": "bin/cli.js",
6
6
  "type": "module",