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

be-more-hapi

v2.1.0

Published

A example site using HAPI to build an API

Downloads

9

Readme

An API built to show off hapi.js

This web API was built to demonstrate some of the hapi features and functionality. It was part of a talk given at Asyncjs on the 10 October 2013. The API is a simple calculator that allows you to add, subtract, divide or multiple two numbers. To demonstrate a more common set of API calls I also added methods to store sums into a mongodb database.

hapi-swagger

The project makes use of a hapi.js plugin hapi-swagger which self documents the API using the Swagger UI interface. It provides simple forms which developers can use to quickly interact with your API and learn how it works. The forms and documentation are built from the standard hapi.js routes object.

Install

You first need to install node.js and mongodb if you do not already have them on your computer. Then download the code from github:

    $ git clone https://github.com/glennjones/be-more-hapi.git

or

    $ curl -L https://github.com/glennjones/be-more-hapi/tarball/master | tar zx

Run

  1. Move into the project directory $ cd be-more-hapi
  2. Run $ npm install
  3. Start the mongodb server $ mongod
  4. Run $ node bin/be-more-hapi
  5. Connect to the server using http://localhost:3003

Example of using tags to show a subset of an API

HAPI-Swagger plugin allows you tag API enpoints into groups that can be displayed independently. The reduced example page http://localhost:3000/reduced demostrates this.

Sums

All the sum endpoints are http PUT requests. Where the two numbers are the last two fragments of the URL:

http://localhost:3000/sum/multiple/5/6

If the sum is completed without error the response is also a simple format:

    {
        "equals": 30
    }

Errors

The error format always has 3 properties; code, error and message. There is an optional fourth property validation which is added if the input is in the incorrect format.

    {
      	"code": 400,
  		"error": "Bad Request",
  		"message": "the value of b must be a number",
  		"validation": {
    		"source": "path",
    		"keys": [
      		"b"
    		]
  		}
	}

Mocha integration test

The project has example integration and unit tests. To run the test within the project type the following command

    $ mocha --reporter list