Skip to content

Instantly share code, notes, and snippets.

View tsdorsey's full-sized avatar

Trevor Dorsey tsdorsey

View GitHub Profile
@tsdorsey
tsdorsey / http_status_codes.js
Last active August 25, 2017 05:22 — forked from joseluisq/status_codes.js
HTTP Status codes
// https://github.com/nodejs/io.js/blob/8be6060020cd2f18ec6c1a5c3a40eb07b8d0e455/lib/_http_server.js#L18
var HTTP_STATUS_CODE = {
100 : 'Continue',
101 : 'Switching Protocols',
102 : 'Processing', // RFC 2518, obsoleted by RFC 4918
200 : 'OK',
201 : 'Created',
202 : 'Accepted',
203 : 'Non-Authoritative Information',