New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

use-rss-medium

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

use-rss-medium

A npm package to format medium rss post articles into json formate in a react application

latest
Source
npmnpm
Version
2.0.7
Version published
Maintainers
1
Created
Source
Siam Ahnaf

use-rss-medium

Get your latest medium article in react. A npm package to format medium rss post articles into json formate in a react application.

Installation

  • npm i use-rss-medium
  • yarn add use-rss-medium

Usage

import { useMedium } from 'use-rss-medium';

const Articles = () => {
    const articles = useMedium("cabbageweb");

    return (
      <ul>
        {articles.map(article => (
          <li key={article.guid}>
            <a href={article.link}>{article.title}</a>
            <p>{article.description}</p>
          </li>
        ))}
      </ul>
    );
};

Remarks

Proxy

This project makes use of a free Proxy service to access the Medium API. If for any reason you want to use another service then you can specify it in the configuration paramters

const articles = useMedium("cabbageweb", {
  proxy: "https://my-custom-proxy.com/"
});

The above configuration will result in the following endpoint: https://my-custom-proxy.com?url=https://medium.com/feed/@cabbageweb.

Keywords

react

FAQs

Package last updated on 01 Jan 2026

Did you know?

Socket

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.

Install

Related posts