1 Star 0 Fork 0

井24/bzdx-rss

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
app.js 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
井24 提交于 2022-05-21 15:46 . gx
const {
parse
} = require('rss-to-json')
const fs = require('fs')
const path = require('path');
const res = fs.readFileSync('./feed.json')
const feedList = JSON.parse(res.toString('utf-8'))
const express = require('express')
const app = express()
const port = 3555
app.use(express.static('web'))
// 设置模板引擎
app.set('views', path.join(__dirname, 'web'));
app.set('view engine', 'ejs');
const fetchAllFeeds = () => {
return new Promise((resolve, reject) => {
const pa = feedList.map((item) => {
return parse(item.rss)
})
Promise.all(pa.map(p => p.catch(e => {
return {
title: `订阅异常${e}`,
items: []
}
}))).then(res => {
resolve(res)
})
})
}
app.get('/', async (req, res) => {
let result = []
result = await fetchAllFeeds()
res.render('index', {
result: result
});
})
app.get('/feeds/list', async (req, res) => {
let result = []
// result = await fetchAllFeeds()
res.send({
data: feedList,
total: feedList.length,
})
})
app.listen(port, () => {
console.log(`app listening on port ${port}`)
})
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/changhao096256/bzdx-rss.git
[email protected]:changhao096256/bzdx-rss.git
changhao096256
bzdx-rss
bzdx-rss
master

搜索帮助