
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
Modern JS library for getting Medium RSS feeds (user, publcation, topic, or tag)
as JSON. Targets modern browsers / Node.js with an API that utilizes
fetch along with async / await.
Check out the Meed docs for details.
Get Medium RSS feeds as JSON. Check out Ghosts/medium-feed because it may suit your needs better.
Because @Ghosts was writing medium-feed. ¯\_(ツ)_/¯
Medium provides basic docs regarding the RSS feeds: https://help.medium.com/hc/en-us/articles/214874118-RSS-feeds
You can get feeds for a user, publication, topic, or tag. Topics can be found at
https://medium.com/topics or via Meed#topics(). In general, feeds seem to be
limited to 10 items.
Check out the Meed docs for more.
Via npm or unpkg:
npm install meed / yarn add meedIn a browser that supports fetch & async/await:
const feed = new Meed()
;(async () => {
const user = await feed.user("Medium")
console.log(user)
})()
or in Node.js (bring your own fetch):
const Meed = require("meed")
const fetch = require("node-fetch")
const feed = new Meed({ fetch })
;(async () => {
const user = await feed.user("Medium")
console.log(user)
})()
For local(host) testing in a browser, you'll probably need a CORS proxy. Here's a list: https://gist.github.com/jimmywarting/ac1be6ea0297c16c477e17f8fbe51347
You can use one like so:
new Meed({ proxy: "PROXY_URL" })
I've had good luck with https://cors-anywhere.herokuapp.com/.
Check out the Meed docs for more details.
MIT.
FAQs
Get Medium RSS feeds as JSON.
We found that meed demonstrated a not healthy version release cadence and project activity because the last version was released 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.