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 0.7.3 to 0.7.4

3

ChangeLog.md

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

2014/04/17 Version 0.7.4
- Fix broken sorting on directories/files/etc
2014/04/13 Version 0.7.3

@@ -2,0 +5,0 @@ - Close fstream if/when res closes, fixes potential fd leak

6

lib/ecstatic/showdir.js

@@ -142,5 +142,5 @@ var ecstatic = require('../ecstatic'),

dirs.sort(function (a, b) { return b[0] - a[0]; }).forEach(writeRow);
files.sort(function (a, b) { return b.toString().localeCompare(a.toString()); }).forEach(writeRow);
lolwuts.sort(function (a, b) { return b[0] - a[0] }).forEach(writeRow);
dirs.sort(function (a, b) { return a[0].toString().localeCompare(b[0].toString()); }).forEach(writeRow);
files.sort(function (a, b) { return a.toString().localeCompare(b.toString()); }).forEach(writeRow);
lolwuts.sort(function (a, b) { return a[0].toString().localeCompare(b[0].toString()); }).forEach(writeRow);

@@ -147,0 +147,0 @@ html += '</table>\n';

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

"description": "A simple static file server middleware that works with both Express and Flatiron",
"version": "0.7.3",
"version": "0.7.4",
"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