hey-leon / hacker-news-top-list

Fetches the top ten articles (Browser Only)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hackernews Top List

This library just includes one default export. Which when called will return a promise resolving to a list of articles from hackernews.

API

getArticles: (count = 30) =>
  Promise<
    Array<HackerNewsArticleShape>
  >

Usage

import getArticles from 'hacker-news-top-list';


getArticles().then(res =>
  console.log(res)
)

About

Fetches the top ten articles (Browser Only)


Languages

Language:JavaScript 100.0%