Gathering detailed insights and metrics for moleculer-web
Gathering detailed insights and metrics for moleculer-web
Gathering detailed insights and metrics for moleculer-web
Gathering detailed insights and metrics for moleculer-web
moleculer-web-uws
The `moleculer-web-uws` is a fast API gateway service for Moleculer based on µWebSockets.js server. Use it to publish your services over HTTP and WebSockets.
@spailybot/moleculer-auto-openapi
Generate openapi scheme for moleculer
tenancy-moleculer-web
Official API Gateway service for Moleculer framework
node-moleculer-web
Fast web app service for moleculer.js + uWebSockets.js
npm install moleculer-web
Typescript
Module System
Min. Node Version
Node Version
NPM Version
67.4
Supply Chain
94.2
Quality
77.9
Maintenance
100
Vulnerability
98.2
License
JavaScript (99.88%)
HTML (0.12%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
4,156,171
Last Day
3,178
Last Week
16,014
Last Month
72,950
Last Year
847,602
MIT License
301 Stars
702 Commits
123 Forks
15 Watchers
9 Branches
44 Contributors
Updated on Mar 10, 2025
Minified
Minified + Gzipped
Latest Version
0.10.7
Package Id
moleculer-web@0.10.7
Unpacked Size
131.96 kB
Size
35.77 kB
File Count
15
NPM Version
6.14.16
Node Version
12.22.12
Published on
Nov 12, 2023
Cumulative downloads
Total Downloads
Last Day
6.1%
3,178
Compared to previous day
Last Week
-5.4%
16,014
Compared to previous week
Last Month
15.9%
72,950
Compared to previous month
Last Year
-8.8%
847,602
Compared to previous year
11
1
The moleculer-web
is the official API gateway service for Moleculer. Use it to publish your services.
npm install moleculer-web --save
This example uses API Gateway service with default settings.
You can access to all services (including internal $node.
) via http://localhost:3000/
1let { ServiceBroker } = require("moleculer");
2let ApiService = require("moleculer-web");
3
4let broker = new ServiceBroker({ logger: console });
5
6// Create a service
7broker.createService({
8 name: "test",
9 actions: {
10 hello() {
11 return "Hello API Gateway!"
12 }
13 }
14});
15
16// Load API Gateway
17broker.createService(ApiService);
18
19// Start server
20broker.start();
Test URLs:
Call test.hello
action: http://localhost:3000/test/hello
Get health info of node: http://localhost:3000/~node/health
List all actions: http://localhost:3000/~node/actions
Please read our documentation on Moleculer site
$ npm test
In development with watching
$ npm run ci
Moleculer-web is available under the MIT license.
Copyright (c) 2016-2021 MoleculerJS
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
Found 9/19 approved changesets -- score normalized to 4
Reason
dependency not pinned by hash detected -- score normalized to 4
Details
Reason
2 commit(s) and 2 issue activity found in the last 90 days -- score normalized to 3
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
75 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-03-03
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More