API Definition with Swagger and YAML

Swagger Installation: npm install -g swagger Project Creation: swagger project create <project_name> Start Project: swagger project start Edit Project: swagger project edit The notation is defined within the OpenAPI Specification. Visual representation of the specification by Arnaud Lauret: Link API Definition (excerpt): Download swagger.yaml Verify YAML code: swagger project verify Include mock file In the project folder under the โ€˜mocksโ€™ directory create a new mock file e.g. getAllEntries.js . The mock file must then be included within the project: ...

December 3, 2017 ยท Aaron

Microservice Example with Spring Boot & Netflix (Zuul & Eureka)

The application: The following microservices were created: microservice-frontend microservice-backend microservice-proxy-zuul microservice-discovery-eureka Download: Microservices Eureka output:

October 24, 2017 ยท Aaron