
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
article-json-to-apple-news
Advanced tools
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
The npm package article-json-to-apple-news receives a total of 6 weekly downloads. As such, article-json-to-apple-news popularity was classified as not popular.
We found that 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 5 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.