LoginSignup
12
11

More than 5 years have passed since last update.

便利なnode.jsモジュール - parse-rss

Posted at

Summary

便利なモジュールをメモがてら簡単な使い方を交えて紹介していきます。

How to use

$ npm install parse-rss
parser = require 'parse-rss'
parser "http://rss的な何か", (err, res)=>
            if err        
                console.log err
                return
            for value in res
                console.log res

ライブラリ自体もCoffeeScriptで書かれています。
仕組みとしては内部でrequestとfeedparserをラップしているだけです。
自分で実装しても良いですが、手間が少し省けます。

12
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
11