API Development with Swagger

Table of Contents

1. Getting Started

2. JSON

fetch = require('node-fetch')

fetch('https://api.github.com/repos/zweifisch/ob-coffee/languages')
  .then(res => res.json())

3. Database

  select id, username from users;

4. Login and Users

  POST http://localhost:8080/login
  Accept: application/json
  Content-Type: application/json
  {
    "username": "test@jwalsh.net",
    "password": "password"
  }

5. Core Tasks

6. Integrating with Angular

7. Mocking

8. Validating the API

9. Testing the Specification

10. Releasing Changes