登录 注册
当前位置:主页 > 资源下载 > 13 > Gatsby源代码插件gatsby-source-rss-feed,专为处理RSS订阅源而设计

Gatsby源代码插件gatsby-source-rss-feed,专为处理RSS订阅源而设计

  • 更新:2024-10-27 18:25:26
  • 大小:30KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

gatsby-source-rss-feed 源插件,用于从RSS feed中将数据提取到Gatsby中。 安装 npm install --save gatsby-source-rss-feed 或者 yarn add gatsby-source-rss-feed 如何使用 基本模式 // In your gatsby-config.js module . exports = { plugins : [ { resolve : `gatsby-source-rss-feed` , options : { url : `http://static.userland.com/gems/backend/rssTwoExample2.xml` , name : `ExampleRSS` , } } ]