On Github nadalfederer / p
Alongside with HTML and CSS, it is one of the three essential technologies of World Wide Web content production; the majority of websites employ it and it is supported by all modern web browsers without plugins
A JavaScript runtime built on Chrome's V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient
https://strongmysterious-atoll-5788.herokuapp.com/templates/profile_main.html
this.templatePath = '/templates/search.html'; var xhr = new XMLHttpRequest(); xhr.open('GET', pathToTemplate, true);
public/templates/profile_main.html
an open standard format that uses human-readable text to transmit data objects consisting of attribute–value pairs. It is the primary data format used for asynchronous browser/server communication.
With local storage, web applications can store data locally within the user's browser. Before HTML5, application data had to be stored in cookies, included in every server request. Local storage is more secure, and large amounts of data can be stored locally, without affecting website performance.
var template = sessionStorage.getItem(pathToTemplate); sessionStorage.setItem(pathToTemplate,template);
var xhr = new XMLHttpRequest(); xhr.open('GET', 'https://api.github.com/search/users?q=' + query + '', true);