@codernex/nexpress 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/dist/image-processor.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
- package/readme.md +5 -5
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -17,10 +17,10 @@ You can use NexPress in three ways:
|
|
|
17
17
|
|
|
18
18
|
### 1. Global Installation (Recommended)
|
|
19
19
|
|
|
20
|
-
This installs the
|
|
20
|
+
This installs the `@codernex/nexpress` command system-wide.
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
npm install -g nexpress
|
|
23
|
+
npm install -g @codernex/nexpress
|
|
24
24
|
|
|
25
25
|
```
|
|
26
26
|
|
|
@@ -29,7 +29,7 @@ npm install -g nexpress
|
|
|
29
29
|
Use it immediately without installing.
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
npx nexpress --input=Desktop/photos --output=Desktop/compressed
|
|
32
|
+
npx @codernex/nexpress --input=Desktop/photos --output=Desktop/compressed
|
|
33
33
|
|
|
34
34
|
```
|
|
35
35
|
|
|
@@ -37,7 +37,7 @@ npx nexpress --input=Desktop/photos --output=Desktop/compressed
|
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
# Clone the repository
|
|
40
|
-
git clone
|
|
40
|
+
git clone https://github.com/codernex/nexpress
|
|
41
41
|
cd nexpress
|
|
42
42
|
|
|
43
43
|
# Install dependencies
|
|
@@ -119,7 +119,7 @@ If you want to contribute or modify the code:
|
|
|
119
119
|
1. **Clone and Install:**
|
|
120
120
|
|
|
121
121
|
```bash
|
|
122
|
-
git clone
|
|
122
|
+
git clone https://github.com/codernex/nexpress
|
|
123
123
|
npm install
|
|
124
124
|
|
|
125
125
|
```
|