@vaibhavjha/qrfy 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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,28 +4,28 @@
|
|
|
4
4
|
|
|
5
5
|
QRfy wraps any dev server command and generates a QR code in your terminal so you can open it on your phone in seconds. No more typing `192.168.x.x:3000` manually.
|
|
6
6
|
|
|
7
|
-
[](https://www.npmjs.com/package/qrfy)
|
|
8
|
-
[](https://github.com/vaibhavjha-dev/qrfy/blob/main/LICENSE)
|
|
7
|
+
[](https://www.npmjs.com/package/@vaibhavjha/qrfy)
|
|
8
|
+
[](https://github.com/vaibhavjha-dev/qrfy/blob/main/LICENSE)
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
12
|
## Install
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
|
-
npm install -g qrfy
|
|
15
|
+
npm install -g @vaibhavjha/qrfy
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
Or with other package managers:
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
21
|
# yarn
|
|
22
|
-
yarn global add qrfy
|
|
22
|
+
yarn global add @vaibhavjha/qrfy
|
|
23
23
|
|
|
24
24
|
# pnpm
|
|
25
|
-
pnpm add -g qrfy
|
|
25
|
+
pnpm add -g @vaibhavjha/qrfy
|
|
26
26
|
|
|
27
27
|
# bun
|
|
28
|
-
bun add -g qrfy
|
|
28
|
+
bun add -g @vaibhavjha/qrfy
|
|
29
29
|
```
|
|
30
30
|
|
|
31
31
|
## Usage
|