UNPKG

hacker-feeds-cli

Version:

A command line tool for hacker news & product hunt feeds.

16 lines (14 loc) 479 B
const HackerNewsBaseUrl = 'https://hacker-news.firebaseio.com/v0/'; const ProductHuntBaseUrl = 'https://api.producthunt.com/v2/api/graphql/'; const GitHubBaseUrl = 'https://trendings.herokuapp.com/repo'; const RedditBaseUrl = 'https://www.reddit.com'; const V2exBaseUrl = 'https://www.v2ex.com'; const OneDayMillSeconds = 1000 * 60 * 60 * 24; module.exports = { HackerNewsBaseUrl, ProductHuntBaseUrl, OneDayMillSeconds, GitHubBaseUrl, RedditBaseUrl, V2exBaseUrl, };