![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
jsonfeed-to-atom
Advanced tools
Convert a JSON feed to an atom feed.
$ npm install jsonfeed-to-atom
const jsonfeedToAtom = require('jsonfeed-to-atom')
const someJSONFeed = require('./load-some-json-feed-data.json')
const atomFeed = jsonfeedToAtom(someJSONFeed) // Returns an atom formatted json feed
Example input:
{
"version": "https://jsonfeed.org/version/1",
"title": "bret.io log",
"home_page_url": "https://bret.io",
"feed_url": "https://bret.io/feed.json",
"description": "A running log of announcements, projects and accomplishments.",
"next_url": "https://bret.io/2017.json",
"icon": "https://bret.io/icon-512x512.png",
"author": {
"name": "Bret Comnes",
"url": "https://bret.io",
"avatar": "https://gravatar.com/avatar/8d8b82740cb7ca994449cccd1dfdef5f?size=512"
},
"items": [
{
"date_published": "2018-04-07T20:48:02.000Z",
"content_text": "Wee wooo this is some content. \n Maybe a new paragraph too",
"url": "https://bret.io/my-text-post",
"id": "https://bret.io/my-text-post-2018-04-07T20:48:02.000Z"
},
{
"date_published": "2018-04-07T22:06:43.000Z",
"content_html": "<p>Hello, world!</p>",
"title": "This is a blog title",
"url": "https://bret.io/my-blog-post",
"external_url": "https://example.com/some-external-link",
"id": "https://bret.io/my-blog-post-2018-04-07T22:06:43.000Z"
}
]
}
Example output:
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>bret.io log</title>
<id>https://bret.io/feed.xml</id>
<updated>2018-04-07T22:06:43.000Z</updated>
<link rel="self" type="application/atom+xml" href="https://bret.io/feed.xml"/>
<link rel="alternate" type="application/json" href="https://bret.io/feed.json"/>
<link rel="alternate" type="text/html" href="https://bret.io"/>
<link rel="next" href="https://bret.io/2017.xml"/>
<author>
<name>Bret Comnes</name>
<uri>https://bret.io</uri>
</author>
<generator uri="https://github.com/bcomnes/jsonfeed-to-atom#readme" version="1.0.0">jsonfeed-to-atom</generator>
<rights>© 2018 Bret Comnes</rights>
<subtitle>A running log of announcements, projects and accomplishments.</subtitle>
<entry>
<id>https://bret.io/my-text-post-2018-04-07T20:48:02.000Z</id>
<title>Wee wooo this is some content.</title>
<updated>2018-04-07T20:48:02.000Z</updated>
<published>2018-04-07T20:48:02.000Z</published>
<content type="text">Wee wooo this is some content.
Maybe a new paragraph too</content>
<link rel="alternate" href="https://bret.io/my-text-post"/>
</entry>
<entry>
<id>https://bret.io/my-blog-post-2018-04-07T22:06:43.000Z</id>
<title>This is a blog title</title>
<updated>2018-04-07T22:06:43.000Z</updated>
<published>2018-04-07T22:06:43.000Z</published>
<content type="html">
<![CDATA[<p>Hello, world!</p>]]>
</content>
<link rel="alternate" href="https://bret.io/my-blog-post"/>
<link rel="related" href="https://example.com/some-external-link"/>
</entry>
</feed>
jsonfeedToAtom(parsedJsonfeed, opts)
Coverts a parsed JSON feed into an atom feed. Returns the string of the atom feed.
Opts include:
{
// a function that returns the atom feed url
feedURLFn: (feedURL, jf) => feedURL.replace(/\.json\b/, '.xml')
}
FAQs
Convert a JSON feed to an atom feed
The npm package jsonfeed-to-atom receives a total of 731 weekly downloads. As such, jsonfeed-to-atom popularity was classified as not popular.
We found that jsonfeed-to-atom demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.