Gathering detailed insights and metrics for node-red-contrib-json2md
Gathering detailed insights and metrics for node-red-contrib-json2md
Gathering detailed insights and metrics for node-red-contrib-json2md
Gathering detailed insights and metrics for node-red-contrib-json2md
npm install node-red-contrib-json2md
Typescript
Module System
Node Version
NPM Version
HTML (64.88%)
JavaScript (35.12%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
4 Stars
4 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Jan 09, 2025
Latest Version
0.0.2
Package Id
node-red-contrib-json2md@0.0.2
Unpacked Size
5.22 kB
Size
2.31 kB
File Count
5
NPM Version
6.14.5
Node Version
12.16.1
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
npm install node-red-contrib-json2md
Using the Editor You can install nodes directly within the editor by selecting the Manage Palette option from the main menu to open the Palette Manager.
The ‘Nodes’ tab lists all of the modules you have installed. It shows which you are using and whether updates are available for any of them.
The ‘Install’ tab lets you search the catalogue of available node modules and install them.
1[ 2 { 3 "a": "11", 4 "b": "22", 5 "c": "33", 6 "d": "44" 7 }, 8 { 9 "a": "55", 10 "b": "66", 11 "c": "77", 12 "d": "88" 13 } 14]
1 | a | b | c | d | 2 | --- | --- | --- | --- | 3 | 11 | 22 | 33 | 44 455 | 66 | 77 | 88 |
a | b | c | d |
---|---|---|---|
11 | 22 | 33 | 44 |
55 | 66 | 77 | 88 |
1module.exports = function (RED) { 2 var json2md = require('json2md'); 3 4 function Json2md(config) { 5 RED.nodes.createNode(this, config); 6 var self = this; 7 this.on('input', function(msg) { 8 var headers = []; 9 for(var k in msg.payload[0]){ 10 headers.push(k) 11 }; 12 msg.payload = json2md([{"table":{"headers":headers, "rows": msg.payload}}]); 13 self.send(msg); 14 }); 15 } 16 RED.nodes.registerType('json2md', Json2md); 17}; 18
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
Found 0/4 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no SAST tool detected
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
Score
Last Scanned on 2025-07-07
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