Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jeffgukang/node-naverblog-rss-parser
https://github.com/jeffgukang/node-naverblog-rss-parser
Last synced: about 12 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeffgukang/node-naverblog-rss-parser
- Owner: JeffGuKang
- Created: 2018-02-17T07:25:29.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-18T10:38:52.000Z (almost 7 years ago)
- Last Synced: 2024-04-14T06:11:10.641Z (7 months ago)
- Language: JavaScript
- Size: 85.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
네이버 블로그 rss parser
## Install
```
npm install naverblog-parser --save
```## Example
```js
import RssParser from 'naverblog-parser';const blog = new RssParser('https://rss.blog.naver.com/summer_ha0319.xml');
blog.getCategoryItems('공지사항') // Category Name
.then(items => {
console.log(items);
console.log(items[0].description);
})
.catch(error => console.log(error));
```