Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@roadiehq/backstage-plugin-home-rss
Advanced tools
A react component that renders a RSS feed as a homepage component. You can configure the plugin to point to a remote RSS feed and it will fetch that RSS feed and render it inside a card componenet.
If you didn't set up the HomePage plugin you can see the official documentation about it here. You'll need to have it setup to be able to include this plugin.
Add the following componenet to your HomePage.tsx file. The HomePageRSS
props are the following type.
yarn add @roadiehq/backstage-plugin-home-rss
export type RSSContentProps = {
feedURL: string;
};
You will need to setup a proxy in order to bypass the CORs checks in the browser:
proxy:
'/reuters-news-feed':
target: 'https://www.reutersagency.com/feed'
Then you can add a card component to your Home Page.
// packages/app/src/components/home/HomePage.tsx
import { HomePageRSS } from '@roadiehq/backstage-plugin-home-rss';
export const HomePage = () => {
return (
...
<Grid item xs={12} md={6}>
<HomePageRSS
feedURL="http://localhost:7007/api/proxy/reuters-news-feed/?best-topics=tech&post_type=best"
title="Reuters News"
paging={false} // Optional. By default the paging is enabled, but it can be disabled
/>
</Grid>
...
);
};
It's also possible to customize each row in the RSS Feed table. You have to use the property rowRenderer
. Check the default renderer as an example.
Roadie gives you a hassle-free, fully customisable SaaS Backstage. Find out more here: https://roadie.io.
FAQs
Unknown package
We found that @roadiehq/backstage-plugin-home-rss demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.