Web - Server

About

A web server is a HTTP server that respond to HTTP request, generally returning a web page (HTML) (but it can serve any type of files).

The request is handled:

  • by native handlers (module) (if the server and the handler are in the same language)
  • or via a third script such as a CGI

When developing locally, note that your browser may enforce strict permissions for reading files out of the local file system. If you use xhr request locally (including d3.json et al.), you must have a local web server (ie installed in your computer)

Type

Language Built-in

For example:

Third Application

Bundle

See Web - Amp (Apache, Mysql, Php)

Origin

An origin server stores or creates resources such as HTML files and images. See HTTP - Origin Server (Header Field)

Features

  • compress and cache both static files and dynamic requests
Task Runner