Built a mock version of an API and deloyed it onto a cloud platform via. Heroku. No routing/controllers. Incorporated github package by JSON Server onto project to create a mock REST API with zero coding.
Interactive mock API, able to make GET, POST, PUT, DELETE etc requests.
fetch('https://bbt-m.herokuapp.com/MilkTea/0')
.then(response => response.json())
.then(data => console.log(data));