GithubHelp home page GithubHelp logo

kyleamathews / be-more-hapi Goto Github PK

View Code? Open in Web Editor NEW

This project forked from glennjones/be-more-hapi

0.0 3.0 0.0 760 KB

A example site using HAPI - Built for Asyncjs talk

License: MIT License

be-more-hapi's Introduction

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 documenetation 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:3000

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

be-more-hapi's People

Contributors

glennjones avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.