Skip to content

olawuwo-abideen/modules

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A collection of API modules which includes;

  1. HAPI is a configuration-centric web framework designed to create any kind of web application, including APIs. The main goal of HAPI is to allow developers to focus on coding the logic of an application, leaving infrastructure code to the framework.

Category: Request/Response handler, Routes handler

  1. Express is a full-fledged web framework providing small and robust tools for HTTP servers, making it a great candidate for all kinds of web applications, including RESTful APIs.

Category: Request/Response handler, Routes handler, Middleware

  1. Restify is a framework specifically design for building REST APIs. It borrows heavily from Express.js (specifically, versions prior to 4.0) because Express is considered the standard when it comes to building web apps.

Category: Request/Response handler, Routes handler, Middleware

  1. Vatican.js is another attempt of a framework designed to create RESTful APIs. It doesn’t follow the Express/Restify path. Its focus is more on the MVP stage of the API, but it provides an interesting alternative.

Category: Request/Response handler, Middleware, Routes handling

  1. This is a module for Express. It integrates into an Express app and provides the functionalities that Swagger 3 does for documenting APIs, which is a web interface with documentation of each method and the ability to try these methods.

Category: Up-to-date documentation

  1. I/O Docs is a live documentation system designed for RESTful APIs. By defining the API using the JSON Schema, I/O Docs generates a web interface to try out the API.

Category: Up-to-date documentation

  1. Halson is a module that helps create HAL-compliant JSON objects, which you’ll then be able to use as part of the response in your API.

Category: Hypermedia on the response

  1. HAL is an alternative to HALSON. It provides a simpler interface but the same underlying functionality: abstracting the HAL+JSON format and giving the developer an easy way to use it.

Category: Hypermedia on the response

  1. This module validates the structure and content of a JSON object against a predefined schema that follows the JSON Schema format.

Category: Request/Response validation

  1. This module provides validation against version 4 of the JSON Schema.

Category: Request/Response validation