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

fastify-eos

v0.1.1

Published

A Fastify plugin to that decorates fastify with an eosjs instance

Downloads

7

Readme

fastify-eos

A plugin that decorates Fastify with an EOS.js instance.

Example

const fastify = require('fastify')()

// receives eosjs config options 
// https://github.com/EOSIO/eosjs#configuration
fastify.register(require('fastify-eos'),{
    httpEndpoint: 'jungle.eosio.cr'
  }, (err) => { if (err) throw err }
)

fastify.get('/info', (req, reply) => {
  const { eos } = fastify 
  return await eos.getInfo({})
})

// GET: 'http://yourapi/info
// {"server_version":"75635168","chain_id":"038f4b0fc8ff18a4f0842a8f0564611f6e96e8535901dd45e43ac8691a1c4dca","head_block_num":7130132,"last_irreversible_block_num":7129812,"last_irreversible_block_id":"006ccad422bc16b20a632fa0da9dfcf2e071c56005cbf4c3c7371a8f972ce38d","head_block_id":"006ccc14d29f28d25495429def0b10a088408eddd7216d53ea4d92191e3e3602","head_block_time":"2018-07-24T01:26:54.500","head_block_producer":"eosninecatmx","virtual_block_cpu_limit":200000000,"virtual_block_net_limit":1048576000,"block_cpu_limit":199900,"block_net_limit":1048576}

Registering a route handler


const handler = async (request, reply, eos) => JSON.stringify(await eos.getInfo({}))

fastify.route({
	method: 'GET',
	url: '/info',
	handler: (request, reply) => handler(request, reply, fastify.eos)
})

Bug Reporting

Please report bugs big and small by opening an issue. No possible bug report is too small.

Contributing

We follow EOS Costa Rica's Open Source Contributing Guidelines.

learn.eoscostarica.io/open-source/

Maintainers

About EOS Costa Rica

EOS Blockchain is aiming to become a decentralized operating system which can support large-scale decentralized applications.

EOS Costa Rica supports the global and local community by maintaining and contributing to open source initiatives, meetups and workshops.

We challenge ourselves to provide the EOS platform with a strong geographical and political diversity by running the most robust EOS Block Producer possible from Costa Rica; We pledge to leverage our talent, experience, and sustainable internet resources to meet such an important challenge.

eoscostarica.com

License

MIT © EOS Costa Rica
See LICENSE for more info