npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

firebase-hackernews

v2.11.0

Published

Hacker News APIs with firebase

Downloads

40

Readme

firebase-hackernews Build Status

Hacker News APIs with firebase

Install

$ npm install --save firebase-hackernews

Test

Express

Run node script at ./example/express/server.js, or npm run express and connect to server

react

This project was generated by create-react-app. Navigate to ./example/react/ and then run first npm install, an then run npm start. If you have any updates before run start, you should reinstall the package

Service Worker

To test service worker, run npm run sw and connet to test server. webpack watching is default options

Usage

See more examples in test.js and refer to HackerNews API for more information of firebase and

Initialzing with firebase/database

Because of firebase running environment is not only for node but also browser and service worker.So you must import both of app and database from firebase modules before import firebase-hackernews.

const firebase = require('firebase');
const hackernews = require('firebase-hackernews');

// create a service as a single instance when the fist call
// you must pass firebase to init method
const hnservice = hackernews(firebase)

Even it can be running with es2015 to support for live-code importing like this below,

import firebase from 'firebase/app'
import from 'firebase/database'

const hnservice = hackernews(firebase)

With Promise

// get all of stories by types, 'top', 'new', 'best', 'ask', 'show', 'job'
hnservice.stories('top').then(stories => {})

// get stories with custom count and page
hnservice.stories('top', {page: 1, count: 30}).then(stories => {})

// get a user
hnservice.user('jl').then(user => {})

// get a current max item id
hnservice.maxItem().then(update => {})

// get a updated items and profiles
hnservice.update().then(update => {})

Without Promise

APIs named to xxxxCached is that support return data immediately but synchronous APIs doesn't do fetch. It only works on cached data that means asynchronous apis alreay has been called or running on watch mode

hnservice.storiesCached('top').then(stories => {})

Fetching with Service Worker

This module supports that running on server-worker. After initialzing in service worker, you can get a data via fetch. To do this, firstly, you must import and initialize both of firebase and hackernews service

/* global importScripts hackernews */
importScripts('https://www.gstatic.com/firebasejs/4.1.2/firebase-app.js')
importScripts('https://www.gstatic.com/firebasejs/4.1.2/firebase-database.js')
importScripts('https://unpkg.com/[email protected]')

hackernews.init(firebase, { watch: true })

and then you can request a stories via fetch and subpath. see more examples in examples/serice-worker

const stories = await fetch('./hackernews/top')
const storiesRes = await stories.json()

storiesRes.data.forEach(s => {
	// manage a story
})

API

init(firebase, [option])

Returns hackernews service powered by firebase as a single instance

{
	firebase: `firebase package. refer to usage above`
	options: {
		watch: `true / false, enable watch mode or not`
		log: `log function, ex) console.log`
	}
}

APIs for Promise

stories(type, [options])

Returns stories with totalLength as an additional info after fetched and cached with options:

  • force: true ? returns stories fetch first, else return cached data if it exist
  • page: returns stories in page by count
  • count: count in a page. default is 50

items(id[s], [options])

Returns items by id[s] after fetched and cached with options:

  • force: true ? returns stories cache first, else return cached data after fetch

user(id)

Returns profile by id

updates()

Returns recent updates regardless fetched data

maxItem()

Returnes max item id of latest snapshot on firebase

watch()

Make the service keep listening on the changes of stories. It recommend to use it for desktop application and server side. refer to the example with express.js

length(type)

Returns a length of cached items of the target type

kids(id)

Return cached all of items related to the target id. key is item's id and data will be flatted object list

data([data])

Set and get data, on cache directly. It's useful when it comes to hydrate / serialis cache

APIs for cached data

Cached APIs returns with data immediately from chached data without fetch and Promise. It would be possible that data is not ready befor you do calll cached APIs

  • storiesCached, identical to stories()
  • itemsCached, identical to items()
  • lengthCached, identical to length() but no promise
  • dataCached, identical to data() but no promise

License

MIT © Jimmy Moon