superprint 1.0.71 → 1.0.72
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 +14 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,12 +16,24 @@ Use the npm launcher below when you prefer to run SuperPrint locally on your com
|
|
|
16
16
|
|
|
17
17
|
Prerequisite: [Node.js 18+](https://nodejs.org) (npm included).
|
|
18
18
|
|
|
19
|
+
### Windows PowerShell
|
|
20
|
+
|
|
21
|
+
The `npm i superprint` command displayed automatically by npm installs the package but does not launch SuperPrint. On Windows PowerShell, script execution policies may also block `npm.ps1` and `npx.ps1`.
|
|
22
|
+
|
|
23
|
+
Launch SuperPrint with the Windows command wrapper instead:
|
|
24
|
+
|
|
25
|
+
```powershell
|
|
26
|
+
npx.cmd superprint@latest
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
This does not require changing your PowerShell execution policy. If you specifically want to install the package first, use `npm.cmd i superprint`, then launch it with `npx.cmd superprint`.
|
|
30
|
+
|
|
31
|
+
### macOS and Linux
|
|
32
|
+
|
|
19
33
|
```bash
|
|
20
34
|
npx superprint
|
|
21
35
|
```
|
|
22
36
|
|
|
23
|
-
**Windows PowerShell:** if script execution is disabled, use `npx.cmd superprint`.
|
|
24
|
-
|
|
25
37
|
On first launch, the launcher downloads the application (about 50 MB), installs its local dependencies and opens **http://127.0.0.1:5173**. Later launches reuse the installed copy and automatically detect application updates. The server binds to the loopback interface by default, so it is not exposed to your local network or the Internet.
|
|
26
38
|
|
|
27
39
|
## What is included
|
package/package.json
CHANGED