Skip to content
This repository has been archived by the owner on Jul 22, 2019. It is now read-only.

zenoplex/node-google-feed-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-google-feed-api

A node.js package for dynamically loading feeds with google feed api. This module will append google feed api script to document and load feed api asynchronously.

Installation

npm install git+https://github.com/zenoplex/node-google-feed-api.git --save

Usage - API

GoogleFeedApi()

Param Type
url string
entriesNum number

load(callback)

load feed/rss

Param Type
callback function

Example

var GoogleFeedApi = require('node-google-feed-api');
var feed = new GoogleFeedApi('http://www.example.com/rss', 10);

feed.load(function(result){
  console.log(result);
});

Development

# watch
npm run watch
# build
npm run build
# test
npm run test

License

MIT

About

google feed api loader for npm

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published