Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@mattersmedia/article-json-to-apple-news
Advanced tools
Render article JSON in the Apple News format
Render article json in Apple News format
npm install article-json-to-apple-news
const convertToAppleNews = require('article-json-to-apple-news');
const article = {
title: 'Article Title',
author: {
name: 'John',
href: 'http://example.com/john'
},
publishedDate: new Date('2016-02-04T14:00:00Z'),
body: [
{
type: 'paragraph',
children: [
{
type: 'text',
content: 'This is the text and '
},
{
type: 'text',
bold: true,
content: 'some bold text '
},
{
type: 'text',
href: 'http://example.com',
content: 'some link'
}
]
},
{
type: 'embed',
embedType: 'image',
src: 'http://example/image.jpg',
width: 300,
height: 150
}
]
};
console.log(convertToAppleNews(article, { identifier: 'article-identifier' }));
// {
// article: <apple news article>,
// bundlesToUrls: <object that maps bundle:// urls to http(s) urls>
// }
https://github.com/micnews/html-to-article-json#format
MIT
FAQs
Render article JSON in the Apple News format
We found that @mattersmedia/article-json-to-apple-news demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.