-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add simple implementation of serving directories as zip files #836
base: master
Are you sure you want to change the base?
Conversation
@thornjad, perhaps you can help clear some of these up when you have time and energy? (In any case, thanks for this great utility. 😄) |
@@ -352,6 +353,9 @@ module.exports = function createMiddleware(_dir, _options) { | |||
// This means we're already trying ./404.html and can not find it. | |||
// So send plain text response with 404 status code | |||
status[404](res, next); | |||
} else if (path.extname(parsed.pathname) === '.zip' && opts.serveDirZip) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should probably be case insensitive.
@thornjad, any chance you could answer a few of the questions above? 😄 |
@thornjad, any input on whether this could conceivably merge in the right state? |
This pull request has been inactive for 360 days |
@thornjad, I still think this would be useful. Any chance you think so too? |
This pull request has been inactive for 360 days |
Still relevant. |
This is a first draft of a new functionality that allows downloading the contents of a directory as a zip file. See the issue linked below for why I think this would be useful.
It's implemented using the archiver library, which allows streaming the compressed files directly to the response. There are currently no automated tests, but the feature can be manually tested without any additional setup by running
npm start
and visiting http://localhost:8080/img.zip.Questions I'd like answered before I continue the work:
http-server
?archiver
adds quite a few transitive dependencies. The number could probably be reduced by using a lower-level library like zip-stream at the cost of more complex wrapping code.--serve-dir-zip
command line argument that controls it. Should it be enabled by default?/directory/.zip
instead of/directory.zip
.archiver
, so it's trivial to enable.Relevant issues
Fixes #798.
Contributor checklist
--help
outputmaster
branchMaintainer checklist