- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Comparing changes
Open a pull request
base repository: http-party/http-server
base: d5b599f2932a6dd96e4c0efc87edfb8c139c5832
head repository: http-party/http-server
compare: 77243e7a824a85b2ae0773b7a05fa24d41db2ce5
Commits on Feb 26, 2016
-
Configuration menu - View commit details
-
Copy full SHA for c32ebc3 - Browse repository at this point
Copy the full SHA c32ebc3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 29183e9 - Browse repository at this point
Copy the full SHA 29183e9View commit details -
Configuration menu - View commit details
-
Copy full SHA for fb00da5 - Browse repository at this point
Copy the full SHA fb00da5View commit details
Commits on Jul 24, 2016
-
Configuration menu - View commit details
-
Copy full SHA for 2dcb4bb - Browse repository at this point
Copy the full SHA 2dcb4bbView commit details
Commits on Nov 6, 2016
-
Aggressively turn off caching when cache time set to -1
Edward D'Souza committedNov 6, 2016 Configuration menu - View commit details
-
Copy full SHA for 01742b5 - Browse repository at this point
Copy the full SHA 01742b5View commit details -
Fix style: use single quotes for string.
Edward D'Souza committedNov 6, 2016 Configuration menu - View commit details
-
Copy full SHA for 541ab5d - Browse repository at this point
Copy the full SHA 541ab5dView commit details -
Fix style: don't use hanging indent for closing bracket.
Edward D'Souza committedNov 6, 2016 Configuration menu - View commit details
-
Copy full SHA for f1f14fa - Browse repository at this point
Copy the full SHA f1f14faView commit details
Commits on May 22, 2017
-
Update Node.js versions to latest list (> 4)
Remove old notification and allow_failures settings
Configuration menu - View commit details
-
Copy full SHA for 37f2dae - Browse repository at this point
Copy the full SHA 37f2daeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9623164 - Browse repository at this point
Copy the full SHA 9623164View commit details
Commits on Jan 6, 2018
-
Using https://www.npmjs.com/package/basic-auth Inspired and built on the work of jondlm in #51
Configuration menu - View commit details
-
Copy full SHA for 5113a57 - Browse repository at this point
Copy the full SHA 5113a57View commit details -
Configuration menu - View commit details
-
Copy full SHA for b8101bd - Browse repository at this point
Copy the full SHA b8101bdView commit details -
Use secure comparison for Basic Auth credentials
Note that the order of arguments to secureCompare will have an effect upon the running time — though not in a way that leaks information about whether the passwords match. These: ```javascript compare("short", "short"); compare("short", "loooo<...>ng"); ``` Will run faster than these: ```javascript compare("loooo<...>ng", "short"); compare("loooo<...>ng", "loooo<...>ng"); ``` If someone could duplicate your exact set-up, they could possibly discover how long your secret password is by testing how long yours takes to run compared to how long their identical server takes to run given passwords of a known length. Given that this isn't the US Govt (I hope), it's not a huge concern, and I don't know enough to do it better. However, given that `http-server` typically runs on its own (without any other software that would 'pad out' the timing), you might want to consider and mitigate this vector of attack.
Configuration menu - View commit details
-
Copy full SHA for 45add9c - Browse repository at this point
Copy the full SHA 45add9cView commit details
Commits on Jan 10, 2018
-
Add README note to promote -c-1 usage
Fixes #407 as best we can at this point without breaking existing deployments.
Configuration menu - View commit details
-
Copy full SHA for b9b95b2 - Browse repository at this point
Copy the full SHA b9b95b2View commit details
Commits on Jan 23, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 64428b7 - Browse repository at this point
Copy the full SHA 64428b7View commit details
Commits on May 7, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 9571d0a - Browse repository at this point
Copy the full SHA 9571d0aView commit details
Commits on May 31, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 214bf79 - Browse repository at this point
Copy the full SHA 214bf79View commit details
Commits on Jun 15, 2018
-
Update README for cli switch value clarity
Booleans current MUST be lowercase. Improved Markdown for presenting cli values.
Configuration menu - View commit details
-
Copy full SHA for 9432968 - Browse repository at this point
Copy the full SHA 9432968View commit details
Commits on Jul 14, 2018
-
Configuration menu - View commit details
-
Copy full SHA for d328f58 - Browse repository at this point
Copy the full SHA d328f58View commit details
Commits on Aug 8, 2018
-
Configuration menu - View commit details
-
Copy full SHA for b1b266c - Browse repository at this point
Copy the full SHA b1b266cView commit details
Commits on Sep 3, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 7f013c1 - Browse repository at this point
Copy the full SHA 7f013c1View commit details
Commits on Oct 4, 2018
-
Add --port alias for -p flag (#468)
* Feat: added --port flag * Docs: added --port flag to README.md Fixes #466
Configuration menu - View commit details
-
Copy full SHA for e50fc44 - Browse repository at this point
Copy the full SHA e50fc44View commit details
Commits on Dec 12, 2018
-
Jade Thornton committed
Dec 12, 2018 Configuration menu - View commit details
-
Copy full SHA for 40357dd - Browse repository at this point
Copy the full SHA 40357ddView commit details -
Jade Thornton committed
Dec 12, 2018 Configuration menu - View commit details
-
Copy full SHA for 2cee0a3 - Browse repository at this point
Copy the full SHA 2cee0a3View commit details
Commits on Dec 13, 2018
-
fix tests so they do what they say they do
Jade Thornton committedDec 13, 2018 Configuration menu - View commit details
-
Copy full SHA for 8a3b87e - Browse repository at this point
Copy the full SHA 8a3b87eView commit details
Commits on Jan 23, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 0b69655 - Browse repository at this point
Copy the full SHA 0b69655View commit details
Commits on Jan 25, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 7564021 - Browse repository at this point
Copy the full SHA 7564021View commit details
Commits on Feb 3, 2019
-
Signed-off-by: Jade Thornton <jade@jmthornton.net>
Configuration menu - View commit details
-
Copy full SHA for 8b5b565 - Browse repository at this point
Copy the full SHA 8b5b565View commit details
Commits on Feb 4, 2019
-
add option for client IP logging
Continuing work by @paked in #187, this adds the useful feature of logging the remote client IP address. I personally use this feature in Apache often at work, and it would be nice to have it here as well! The addition is the `--log-ip` option, which adds the client IP to the log message between the date and the request method and url. Signed-off-by: Jade Thornton <jade@jmthornton.net>
Configuration menu - View commit details
-
Copy full SHA for 51cdf57 - Browse repository at this point
Copy the full SHA 51cdf57View commit details -
Signed-off-by: Jade Thornton <jade@jmthornton.net>
Configuration menu - View commit details
-
Copy full SHA for bfee8d4 - Browse repository at this point
Copy the full SHA bfee8d4View commit details
Commits on Feb 5, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 64de7f5 - Browse repository at this point
Copy the full SHA 64de7f5View commit details
Commits on Feb 6, 2019
-
Merge pull request #503 from amad-person/add-issue-pr-templates
Add issue and pull request templates
Configuration menu - View commit details
-
Copy full SHA for 74ba105 - Browse repository at this point
Copy the full SHA 74ba105View commit details
Commits on Feb 7, 2019
-
Updated dependencies to fix security issues
Removed common-style (deprecated, depends on unpatched packages) Issue #461
Configuration menu - View commit details
-
Copy full SHA for 72d7614 - Browse repository at this point
Copy the full SHA 72d7614View commit details
Commits on Feb 11, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 004da3b - Browse repository at this point
Copy the full SHA 004da3bView commit details
Commits on Apr 6, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 3e9a57f - Browse repository at this point
Copy the full SHA 3e9a57fView commit details
Commits on Apr 15, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 9310c41 - Browse repository at this point
Copy the full SHA 9310c41View commit details -
Configuration menu - View commit details
-
Copy full SHA for c68ff7f - Browse repository at this point
Copy the full SHA c68ff7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b11028 - Browse repository at this point
Copy the full SHA 2b11028View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 34467ea - Browse repository at this point
Copy the full SHA 34467eaView commit details -
Merge pull request #452 from IamfromSpace:preve...
...nt-vows-error-swallowing Prevent vows from swallowing test errors on uncaught errors within topics
Configuration menu - View commit details
-
Copy full SHA for 573fe58 - Browse repository at this point
Copy the full SHA 573fe58View commit details -
Merge pull request #326 from ghedsouza:really-t...
...urn-off-caching-when-cache-set-to-negative-one Aggressively turn off caching when cache time set to -1
Configuration menu - View commit details
-
Copy full SHA for 8bc2fe0 - Browse repository at this point
Copy the full SHA 8bc2fe0View commit details -
Merge pull request #485 from chill117/update-de...
...ps-to-fix-security-issues Updated dependencies to fix security issues
Configuration menu - View commit details
-
Copy full SHA for 68b48eb - Browse repository at this point
Copy the full SHA 68b48ebView commit details -
Configuration menu - View commit details
-
Copy full SHA for ec08b63 - Browse repository at this point
Copy the full SHA ec08b63View commit details -
Configuration menu - View commit details
-
Copy full SHA for 456f7ff - Browse repository at this point
Copy the full SHA 456f7ffView commit details -
Configuration menu - View commit details
-
Copy full SHA for 597c126 - Browse repository at this point
Copy the full SHA 597c126View commit details -
Merge pull request #477 from dcos-labs/add-prox...
...y-error-handling Handle proxy errors Fixes #193
Configuration menu - View commit details
-
Copy full SHA for e703c5b - Browse repository at this point
Copy the full SHA e703c5bView commit details -
Configuration menu - View commit details
-
Copy full SHA for e1f5d23 - Browse repository at this point
Copy the full SHA e1f5d23View commit details -
Merge pull request #463 from thornjad/brotli-en...
...coding Add support for brotli encoding
Configuration menu - View commit details
-
Copy full SHA for 3ccddaa - Browse repository at this point
Copy the full SHA 3ccddaaView commit details -
Merge pull request #250 from wwx-node/master
fixbug with -o [path] Open browser window after starting the server
Configuration menu - View commit details
-
Copy full SHA for c8e2cbb - Browse repository at this point
Copy the full SHA c8e2cbbView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2e97199 - Browse repository at this point
Copy the full SHA 2e97199View commit details -
Configuration menu - View commit details
-
Copy full SHA for d8d001d - Browse repository at this point
Copy the full SHA d8d001dView commit details
There are no files selected for viewing
This file was deleted.