@beblurt/blurt-nodes-checker 2.0.0 → 2.0.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/README.md +34 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,6 +77,14 @@ To view the absolute power of this tool without any Node.js backend dependencies
|
|
|
77
77
|
|
|
78
78
|
Navigate to `examples/browser/index.html` within this repo (and serve it via any basic HTTP tool like `npx serve .`) to experience a live, flickering-free analytical dashboard dynamically coloring lag limits and modal validations directly over the Web.
|
|
79
79
|
|
|
80
|
+
## Terminal CLI Dashboard (Node.js)
|
|
81
|
+
|
|
82
|
+
For server-side and PM2/System Administrator users, there is a beautifully styled, zero-dependency ANSI Terminal Monitor script!
|
|
83
|
+
Run the following in your terminal to spawn an ASCII-colored real-time tracking matrix measuring network latency, forks, and drops directly in standard output:
|
|
84
|
+
```bash
|
|
85
|
+
node examples/node/index.js
|
|
86
|
+
```
|
|
87
|
+
|
|
80
88
|
## The 0-100 Scoring Math
|
|
81
89
|
|
|
82
90
|
Our clustering matrix is scored on a normalized 0-100 spectrum allowing standard load balancers to automatically select the absolute healthiest node in real-time.
|
|
@@ -108,4 +116,29 @@ const checker = new BlurtNodesChecker(myRpcList, {
|
|
|
108
116
|
}
|
|
109
117
|
]
|
|
110
118
|
})
|
|
111
|
-
```
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
## Contributing
|
|
122
|
+
|
|
123
|
+
Pull requests for new features, bug fixes, and suggestions are welcome!
|
|
124
|
+
|
|
125
|
+
## Author
|
|
126
|
+
|
|
127
|
+
@beblurt (https://beblurt.com/@beblurt)
|
|
128
|
+
|
|
129
|
+
## License
|
|
130
|
+
|
|
131
|
+
Copyright (C) 2022 IMT ASE Co., LTD
|
|
132
|
+
|
|
133
|
+
This program is free software: you can redistribute it and/or modify
|
|
134
|
+
it under the terms of the GNU General Public License as published by
|
|
135
|
+
the Free Software Foundation, either version 3 of the License, or
|
|
136
|
+
(at your option) any later version.
|
|
137
|
+
|
|
138
|
+
This program is distributed in the hope that it will be useful,
|
|
139
|
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
140
|
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
141
|
+
GNU General Public License for more details.
|
|
142
|
+
|
|
143
|
+
You should have received a copy of the GNU General Public License
|
|
144
|
+
along with this program. If not, see <http://www.gnu.org/licenses/>.
|