HTTP requests and responses - mmedrano9438/peripheral-brain GitHub Wiki

JavaScript has great modules and methods to make HTTP requests that can be used to send or receive data from a server side resource. For example:

Ajax (XMLHttpRequest() method), jQuery Ajax there's the get, post methods. Fetch(new powerful web API that lets you make asynchronous requests)...Fetch returns a “Promise” which is one of the great features of ES6. Axios