Gathering detailed insights and metrics for marked-linkify-it
Gathering detailed insights and metrics for marked-linkify-it
Gathering detailed insights and metrics for marked-linkify-it
Gathering detailed insights and metrics for marked-linkify-it
npm install marked-linkify-it
Typescript
Module System
Node Version
NPM Version
85.6
Supply Chain
89.7
Quality
77.9
Maintenance
100
Vulnerability
99.6
License
JavaScript (96.44%)
TypeScript (3.56%)
Total Downloads
194,321
Last Day
105
Last Week
2,021
Last Month
9,401
Last Year
105,422
MIT License
3 Stars
1,477 Commits
4 Forks
2 Watchers
13 Branches
6 Contributors
Updated on Jun 30, 2025
Minified
Minified + Gzipped
Latest Version
3.1.13
Package Id
marked-linkify-it@3.1.13
Unpacked Size
60.46 kB
Size
13.26 kB
File Count
7
NPM Version
10.8.1
Node Version
22.16.0
Published on
Jun 27, 2025
Cumulative downloads
Total Downloads
Last Day
-31.8%
105
Compared to previous day
Last Week
-19.3%
2,021
Compared to previous week
Last Month
-20%
9,401
Compared to previous month
Last Year
55.8%
105,422
Compared to previous year
2
1
19
marked using linkify-it for urls
1import { marked } from "marked"; 2import markedLinkifyIt from "marked-linkify-it"; 3 4// or UMD script 5// <script src="https://cdn.jsdelivr.net/npm/marked/lib/marked.umd.js"></script> 6// <script src="https://cdn.jsdelivr.net/npm/marked-linkify-it/lib/index.umd.js"></script> 7 8const schemas = {}; 9const options = {}; 10 11marked.use(markedLinkifyIt(schemas, options)); 12 13marked("example.com"); 14// <p><a href="http://example.com">example.com</a></p>
schemas
see https://github.com/markdown-it/linkify-it#api
Note: #add()
doesn't work with this extension
1markedLinkifyIt.add('@', {...}) // Doesn't work, you need to pass a schema manually
Instead do:
1const schemas = { 2 '@': { 3 validate: function (text, pos, self) { 4 // ... 5 }, 6 normalize: function (match) { 7 // ... 8 } 9 } 10};
options
see https://github.com/markdown-it/linkify-it#api
linkify options plus the following additional options:
tlds
String|String[]
replace or add tlds for fuzzy links/
tldsKeepOld
Boolean; Default: false
true
to add domains instead of replacing domain list.
No vulnerabilities found.
Reason
30 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
packaging workflow detected
Details
Reason
2 existing vulnerabilities detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
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
Score
Last Scanned on 2025-06-23
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