Gathering detailed insights and metrics for jsonify-that-feed
Gathering detailed insights and metrics for jsonify-that-feed
Gathering detailed insights and metrics for jsonify-that-feed
Gathering detailed insights and metrics for jsonify-that-feed
A simple library for turning Atom, RSS and JSON feeds into JSON Feed.
npm install jsonify-that-feed
Typescript
Module System
Min. Node Version
Node Version
NPM Version
TypeScript (98.75%)
JavaScript (1.25%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
1 Stars
19 Commits
1 Watchers
1 Branches
1 Contributors
Updated on Mar 23, 2023
Latest Version
1.2.2
Package Id
jsonify-that-feed@1.2.2
Unpacked Size
82.29 kB
Size
16.71 kB
File Count
41
NPM Version
6.14.10
Node Version
14.15.4
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
3
3
Parse Atom
, RSS
, JSON
feeds to JSON Feed 1.1
.
Or OPML
to JSON
and vice versa.
This module is specifically developed for Ghost Reader
1# with npm: npm i jsonify-that-feed 2yarn add jsonify-that-feed
1import axios from 'axios'; 2import * as jsonify from 'jsonify-that-feed'; 3 4const { data } = await axios.get(url); 5const feed = jsonify.toJson(data); 6console.log(feed); 7/* 8 { 9 "version": "https://jsonfeed.org/version/1.1", 10 "title": "My Example Feed", 11 "home_page_url": "https://example.org/", 12 "feed_url"?: "https://example.org/feed.json", 13 "items": [ 14 { 15 "id": "1", 16 "content_html"?: "<p>Hello, world!</p>", 17 "url"?: "https://example.org/initial-post" 18 } 19 ] 20 } 21*/
1const json = jsonify.opmlToJson(data); 2console.log(json); 3/** 4 { 5 version: 2, 6 head: { title: 'Ghost Reader Subscriptions' }, 7 body: { 8 outline: [ 9 { 10 text: 'Example', 11 title: 'Example', 12 type: 'rss', 13 xmlUrl: 'https://example.com/feed', 14 htmlUrl: 'https://example.com', 15 }, 16 ], 17 }, 18 } 19*/
1const opml = jsonify.jsonToOpml(data); 2console.log(opml); 3/** 4 <version>2</version> 5 <head> 6 <title>Ghost Reader Subscriptions</title> 7 </head> 8 <body> 9 <outline> 10 <text>Example</text> 11 <title>Example</title> 12 <type>rss</type> 13 <xmlUrl>https://example.com/feed</xmlUrl> 14 <htmlUrl>https://example.com</htmlUrl> 15 </outline> 16 </body> 17*/
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no SAST tool detected
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 0/19 approved changesets -- score normalized to 0
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
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
10 existing vulnerabilities detected
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