dev-_007haste-server 1.17.3 → 1.17.5

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 +22 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -3,15 +3,26 @@ haste-server 🔐💻💻💻
3
3
 
4
4
  [![haste-server](https://i.ibb.co/8L8p4YMx/2025-08-31-19-51-02.png)](https://ibb.co/gLgpF4yW)'
5
5
  [![haste-server](https://i.ibb.co/KxRvMfy5/2025-08-31-19-51-12.png)](https://ibb.co/jkBXcQ48)'
6
+ [![npm](https://img.shields.io/badge/node_-%3E%3D18-brightgreen)](https://www.npmjs.com/package/dev-_007haste-server)
7
+ [![npm downloads](https://img.shields.io/npm/d18m/dev-_007haste-server?maxAge=3600)](https://www.npmjs.com/package/dev-_007haste-server)
8
+ [![Open Source Love](https://badges.frapsoft.com/os/mit/mit.svg?v=102)](haste-server)
6
9
 
7
10
 
8
11
  haste-server — это простой сервер для работы с файлами и данными через HTTPS. Он позволяет легко настроить сервер с поддержкой SSL для безопасной передачи данных. 🔒
9
12
 
13
+ ## change log
14
+
15
+ ...
16
+
17
+ ## Installation
18
+
10
19
  🚀 Установка
11
20
 
12
21
  Чтобы установить haste-server, выполните команду:
13
22
 
23
+ ```
14
24
  npm install dev-_007haste-server
25
+ ```
15
26
 
16
27
  ⚡ Запуск
17
28
 
@@ -19,6 +30,16 @@ npm install dev-_007haste-server
19
30
 
20
31
  node node_modules/dev-_007haste-server/server.js
21
32
 
33
+ # Options
34
+
35
+ Option | Default
36
+ ----------- | ---------------------------------------------
37
+ `start_haste-server` | `"node node_modules/dev-_007haste-server/server.js"`
38
+
39
+
40
+
41
+
42
+
22
43
  🔒 Настройка HTTPS
23
44
 
24
45
  Чтобы настроить сервер с HTTPS, откройте файл server.js и замените строку:
@@ -29,7 +50,7 @@ https.createServer(sslOptions, app).listen(PORT, () => { console.log(HTTPS се
29
50
 
30
51
  https.createServer(sslOptions, app).listen(PORT, () => { console.log(HTTPS сервер запущен на https://ip.addr:${PORT}); });
31
52
 
32
- Не забудьте заменить ip.addr на ваш реальный IP-адрес. 🌐
53
+ Не забудьте заменить ip.addr на ваш реальный IP-адрес. (local IP address) 🌐
33
54
 
34
55
 
35
56
  ....
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dev-_007haste-server",
3
- "version": "1.17.3",
3
+ "version": "1.17.5",
4
4
  "description": "Simple hastebin-like server with HTTPS",
5
5
  "main": "server.js",
6
6
  "scripts": {