instbyte 1.6.0 → 1.6.2

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 +11 -4
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -5,15 +5,21 @@
5
5
  <h1 align="center">Instbyte</h1>
6
6
 
7
7
  <p align="center">
8
- A self-hosted LAN sharing utility you can make your own — files, links, and snippets across devices instantly, no cloud required.
8
+ <a href="https://www.npmjs.com/package/instbyte"><img src="https://img.shields.io/npm/v/instbyte" alt="npm version"></a>
9
+ <a href="https://github.com/mohitgauniyal/instbyte/blob/main/LICENSE">
10
+ <img src="https://img.shields.io/github/license/mohitgauniyal/instbyte" alt="license">
11
+ </a>
9
12
  </p>
10
13
 
14
+ ---
15
+
11
16
  <p align="center">
12
- <a href="https://www.npmjs.com/package/instbyte"><img src="https://img.shields.io/npm/v/instbyte" alt="npm version"></a>
13
- <a href="https://github.com/mohitgauniyal/instbyte/blob/main/LICENSE"><img src="https://img.shields.io/npm/l/instbyte" alt="license"></a>
17
+ <img src="assets/instbyte-ad.png" width="900">
14
18
  </p>
15
19
 
16
- ---
20
+ ```bash
21
+ npx instbyte
22
+ ```
17
23
 
18
24
  **Instbyte** is a high-speed, real-time, short-lived LAN sharing utility built for teams and developers who need to move snippets, links, files, and structured notes across devices instantly — without cloud accounts, logins, or external services.
19
25
 
@@ -37,6 +43,7 @@ Or install globally and run from anywhere:
37
43
  npm install -g instbyte
38
44
  instbyte
39
45
  ```
46
+ Data and config live in the directory you run the command from. To keep a permanent instance, always run from the same folder or use a process manager like pm2.
40
47
 
41
48
  That's it. Open the displayed URL in any browser on the same network.
42
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "instbyte",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
4
  "description": "A self-hosted LAN sharing utility for fast, frictionless file, link, and snippet exchange across devices — no cloud required.",
5
5
  "main": "server/server.js",
6
6
  "bin": {
@@ -39,9 +39,9 @@
39
39
  "cookie-parser": "^1.4.6",
40
40
  "express": "^4.18.2",
41
41
  "express-rate-limit": "^7.1.5",
42
- "multer": "^1.4.5-lts.1",
42
+ "multer": "^2.0.2",
43
43
  "sharp": "^0.33.2",
44
44
  "socket.io": "^4.6.1",
45
45
  "sqlite3": "^5.1.6"
46
46
  }
47
- }
47
+ }