redis-smq-web-server 9.0.1 → 9.0.2-next.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/CHANGELOG.md +20 -0
- package/README.md +18 -10
- package/README.template.md +52 -0
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [9.0.2-next.1](https://github.com/weyoss/redis-smq/compare/v9.0.2-next.0...v9.0.2-next.1) (2025-11-08)
|
|
7
|
+
|
|
8
|
+
### 🐛 Bug Fixes
|
|
9
|
+
|
|
10
|
+
- update deps to resolve security vulnerabilities ([390d488](https://github.com/weyoss/redis-smq/commit/390d4880241c6bc3cf37e94d1b09f34197a7fa7b))
|
|
11
|
+
|
|
12
|
+
### 📝 Documentation
|
|
13
|
+
|
|
14
|
+
- update npm badge links to point to GitHub releases ([1eaee9e](https://github.com/weyoss/redis-smq/commit/1eaee9e1734b4e78ac56ca9853baac1d58dd2ec9))
|
|
15
|
+
|
|
16
|
+
## [9.0.2-next.0](https://github.com/weyoss/redis-smq/compare/v9.0.1...v9.0.2-next.0) (2025-11-08)
|
|
17
|
+
|
|
18
|
+
### ✅ Tests
|
|
19
|
+
|
|
20
|
+
- rename test_workspace_esm.sh to test-workspace-esm.sh ([4c56821](https://github.com/weyoss/redis-smq/commit/4c5682125c99949118141418c11bd296d2869172))
|
|
21
|
+
|
|
22
|
+
### 📦 Build System
|
|
23
|
+
|
|
24
|
+
- automate README.md files update ([9d54181](https://github.com/weyoss/redis-smq/commit/9d54181260e6615d176fe47b4786f8edb21c2911))
|
|
25
|
+
|
|
6
26
|
## [9.0.1](https://github.com/weyoss/redis-smq/compare/v9.0.0...v9.0.1) (2025-11-07)
|
|
7
27
|
|
|
8
28
|
### 📝 Documentation
|
package/README.md
CHANGED
|
@@ -1,7 +1,15 @@
|
|
|
1
1
|
# RedisSMQ Web Server
|
|
2
2
|
|
|
3
|
-
[!
|
|
4
|
-
|
|
3
|
+
> [!NOTE]
|
|
4
|
+
> You are viewing the documentation for the "next" branch. These docs describe unreleased changes published under the npm "next" dist-tag.
|
|
5
|
+
> For the latest stable documentation, see:
|
|
6
|
+
>
|
|
7
|
+
> - Master (stable) README: https://github.com/weyoss/redis-smq/tree/master/packages/redis-smq-web-server
|
|
8
|
+
> - Latest release notes/tags: https://github.com/weyoss/redis-smq/releases/latest
|
|
9
|
+
> - Install stable packages with @latest; pre-release with @next.
|
|
10
|
+
|
|
11
|
+
[](https://github.com/weyoss/redis-smq/releases)
|
|
12
|
+
[](https://app.codecov.io/github/weyoss/redis-smq/tree/next/packages/redis-smq-web-server)
|
|
5
13
|
|
|
6
14
|
A lightweight server that brings the RedisSMQ management ecosystem to life. It serves the official Web UI and provides
|
|
7
15
|
the REST API through two flexible modes of operation:
|
|
@@ -19,7 +27,7 @@ the REST API through two flexible modes of operation:
|
|
|
19
27
|
|
|
20
28
|
```bash
|
|
21
29
|
# Using npm
|
|
22
|
-
npm install redis-smq@
|
|
30
|
+
npm install redis-smq@next redis-smq-common@next redis-smq-rest-api@next redis-smq-web-ui@next redis-smq-web-server@next --save
|
|
23
31
|
```
|
|
24
32
|
|
|
25
33
|
Don't forget to install a Redis client. Choose either node-redis or ioredis:
|
|
@@ -32,19 +40,19 @@ npm install ioredis --save
|
|
|
32
40
|
|
|
33
41
|
## Version Compatibility
|
|
34
42
|
|
|
35
|
-
Always install matching versions of RedisSMQ packages to ensure compatibility. See [version compatibility](https://github.com/weyoss/redis-smq/tree/
|
|
43
|
+
Always install matching versions of RedisSMQ packages to ensure compatibility. See [version compatibility](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq/docs/version-compatibility.md) for details.
|
|
36
44
|
|
|
37
45
|
## Documentation
|
|
38
46
|
|
|
39
|
-
For in-depth guides and API references, see [the documentation page](https://github.com/weyoss/redis-smq/tree/
|
|
47
|
+
For in-depth guides and API references, see [the documentation page](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-web-server/docs/README.md).
|
|
40
48
|
|
|
41
49
|
## Related packages
|
|
42
50
|
|
|
43
|
-
- [redis-smq](https://github.com/weyoss/redis-smq/tree/
|
|
44
|
-
- [redis-smq-common](https://github.com/weyoss/redis-smq/tree/
|
|
45
|
-
- [redis-smq-rest-api](https://github.com/weyoss/redis-smq/tree/
|
|
46
|
-
- [redis-smq-web-ui](https://github.com/weyoss/redis-smq/tree/
|
|
51
|
+
- [redis-smq](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq/README.md): Core message queue
|
|
52
|
+
- [redis-smq-common](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-common/README.md): Shared components/utilities
|
|
53
|
+
- [redis-smq-rest-api](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-rest-api/README.md): REST API with OpenAPI v3 and Swagger UI
|
|
54
|
+
- [redis-smq-web-ui](https://github.com/weyoss/redis-smq/tree/next/packages/redis-smq-web-ui/README.md): SPA for monitoring and managing RedisSMQ
|
|
47
55
|
|
|
48
56
|
## License
|
|
49
57
|
|
|
50
|
-
RedisSMQ Web Server is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/
|
|
58
|
+
RedisSMQ Web Server is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/next/LICENSE).
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# RedisSMQ Web Server
|
|
2
|
+
|
|
3
|
+
__IS_NEXT_NOTE__
|
|
4
|
+
|
|
5
|
+
__NPM_BADGE__
|
|
6
|
+
__CODECOV_BADGE__
|
|
7
|
+
|
|
8
|
+
A lightweight server that brings the RedisSMQ management ecosystem to life. It serves the official Web UI and provides
|
|
9
|
+
the REST API through two flexible modes of operation:
|
|
10
|
+
|
|
11
|
+
- **Standalone Mode:** Run the Web UI and REST API in a single process for an all-in-one setup.
|
|
12
|
+
- **Proxy Mode:** Serve the Web UI and proxy API requests to a separate redis-smq-rest-api instance for distributed deployments.
|
|
13
|
+
|
|
14
|
+
## Features
|
|
15
|
+
|
|
16
|
+
- **Dual-Mode Operation:** Standalone (UI + API in one process) or Proxy (UI + proxied API).
|
|
17
|
+
- **Versatile Execution:** Start from the CLI as a standalone server or embed as a library in your Node.js app.
|
|
18
|
+
- **Consistent Ecosystem:** Works seamlessly with `redis-smq`, `redis-smq-rest-api`, and `redis-smq-web-ui`.
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
# Using npm
|
|
24
|
+
npm install redis-smq__TAG_SUFFIX__ redis-smq-common__TAG_SUFFIX__ redis-smq-rest-api__TAG_SUFFIX__ redis-smq-web-ui__TAG_SUFFIX__ redis-smq-web-server__TAG_SUFFIX__ --save
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Don't forget to install a Redis client. Choose either node-redis or ioredis:
|
|
28
|
+
|
|
29
|
+
```shell
|
|
30
|
+
npm install @redis/client --save
|
|
31
|
+
# or
|
|
32
|
+
npm install ioredis --save
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
## Version Compatibility
|
|
36
|
+
|
|
37
|
+
Always install matching versions of RedisSMQ packages to ensure compatibility. See [version compatibility](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/packages/redis-smq/docs/version-compatibility.md) for details.
|
|
38
|
+
|
|
39
|
+
## Documentation
|
|
40
|
+
|
|
41
|
+
For in-depth guides and API references, see [the documentation page](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/packages/redis-smq-web-server/docs/README.md).
|
|
42
|
+
|
|
43
|
+
## Related packages
|
|
44
|
+
|
|
45
|
+
- [redis-smq](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/packages/redis-smq/README.md): Core message queue
|
|
46
|
+
- [redis-smq-common](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/packages/redis-smq-common/README.md): Shared components/utilities
|
|
47
|
+
- [redis-smq-rest-api](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/packages/redis-smq-rest-api/README.md): REST API with OpenAPI v3 and Swagger UI
|
|
48
|
+
- [redis-smq-web-ui](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/packages/redis-smq-web-ui/README.md): SPA for monitoring and managing RedisSMQ
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
RedisSMQ Web Server is released under the [MIT License](https://github.com/weyoss/redis-smq/tree/__BRANCH_NAME__/LICENSE).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-web-server",
|
|
3
|
-
"version": "9.0.1",
|
|
3
|
+
"version": "9.0.2-next.1",
|
|
4
4
|
"description": "Web server for RedisSMQ Web UI: serves the SPA and hosts or proxies the RedisSMQ REST API.",
|
|
5
5
|
"author": "Weyoss <weyoss@protonmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -35,21 +35,20 @@
|
|
|
35
35
|
"redis-smq-web-server": "./dist/esm/bin/cli.js"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"commander": "14.0.
|
|
38
|
+
"commander": "14.0.2",
|
|
39
39
|
"express": "4.21.2",
|
|
40
|
-
"express-rate-limit": "8.1.0",
|
|
41
40
|
"http-proxy-middleware": "3.0.5"
|
|
42
41
|
},
|
|
43
42
|
"devDependencies": {
|
|
44
|
-
"@types/express": "4.17.
|
|
43
|
+
"@types/express": "4.17.25"
|
|
45
44
|
},
|
|
46
45
|
"peerDependencies": {
|
|
47
46
|
"@redis/client": "^5",
|
|
48
47
|
"ioredis": "^5",
|
|
49
|
-
"redis-smq": "^9.0.1",
|
|
50
|
-
"redis-smq-common": "^9.0.1",
|
|
51
|
-
"redis-smq-
|
|
52
|
-
"redis-smq-
|
|
48
|
+
"redis-smq": "^9.0.2-next.1",
|
|
49
|
+
"redis-smq-common": "^9.0.2-next.1",
|
|
50
|
+
"redis-smq-rest-api": "^9.0.2-next.1",
|
|
51
|
+
"redis-smq-web-ui": "^9.0.2-next.1"
|
|
53
52
|
},
|
|
54
53
|
"peerDependenciesMeta": {
|
|
55
54
|
"@redis/client": {
|
|
@@ -66,6 +65,6 @@
|
|
|
66
65
|
"scripts": {
|
|
67
66
|
"build": "scripts/build.sh",
|
|
68
67
|
"dev": "tsc -w & node --watch dist/index.js",
|
|
69
|
-
"test": "../../scripts/
|
|
68
|
+
"test": "../../scripts/test-workspace-esm.sh"
|
|
70
69
|
}
|
|
71
70
|
}
|