forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgen-rss.js
38 lines (31 loc) · 1 KB
/
gen-rss.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
const { promises: fs } = require('fs')
const path = require('path')
const RSS = require('rss')
const matter = require('gray-matter')
async function generate() {
const feed = new RSS({
title: 'Your Name',
site_url: 'https://yoursite.com',
feed_url: 'https://yoursite.com/feed.xml'
})
const posts = await fs.readdir(path.join(__dirname, '..', 'pages', 'posts'))
await Promise.all(
posts.map(async (name) => {
if (name.startsWith('index.')) return
const content = await fs.readFile(
path.join(__dirname, '..', 'pages', 'posts', name)
)
const frontmatter = matter(content)
feed.item({
title: frontmatter.data.title,
url: '/posts/' + name.replace(/\.mdx?/, ''),
date: frontmatter.data.date,
description: frontmatter.data.description,
categories: frontmatter.data.tag.split(', '),
author: frontmatter.data.author
})
})
)
await fs.writeFile('./public/feed.xml', feed.xml({ indent: true }))
}
generate()