Socket
Socket
Sign inDemoInstall

ecstatic

Package Overview
Dependencies
Maintainers
2
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ecstatic - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

3

CHANGELOG.md

@@ -0,1 +1,4 @@

2015/10/02 Version 1.1.1
- Properly handle boolean CLI args
2015/10/01 Version 1.1.0

@@ -2,0 +5,0 @@ - Adds support for responding to OPTIONS headers

@@ -322,3 +322,16 @@ #! /usr/bin/env node

var http = require('http'),
opts = require('minimist')(process.argv.slice(2)),
opts = require('minimist')(process.argv.slice(2), {
boolean: [
'showdir', 'showDir',
'humanreadable', 'humanReadable', 'human-readable',
'si', 'index',
'handleError', 'handleerror',
'cors', 'CORS',
'gzip',
'serverHeader', 'serverheader', 'server-header',
'weakEtags', 'weaketags', 'weak-etags',
'weakcompare', 'weakCompare', 'weak-compare', 'weak-Compare',
'handleOptionsMethod', 'handleoptionsmethod', 'handle-options-method'
]
}),
envPORT = parseInt(process.env.PORT, 10),

@@ -325,0 +338,0 @@ port = envPORT > 1024 && envPORT <= 65536 ? envPORT : opts.port || opts.p || 8000,

2

package.json

@@ -5,3 +5,3 @@ {

"description": "A simple static file server middleware that works with both Express and Flatiron",
"version": "1.1.0",
"version": "1.1.1",
"homepage": "https://github.com/jfhbrook/node-ecstatic",

@@ -8,0 +8,0 @@ "repository": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc