You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a developer, I would like to pass ZIP archives to resource dependent handlers, so that I do not need to extract the archive first.
Example
vararchive=Resource.FromFile("./app.zip");vartree=ResourceTree.FromArchive(archive);// use the archive for whatever we want tovarapp=SinglePageApplication.From(tree);// Listing.From(tree), Resources.From(tree)Host.Create().Handler(app).Run();
Acceptance criteria
The functionality is implemented in the IO module
The implementation is thread safe
The implementation does access requested ZIP entries on demand without caching them in memory or on file system
There are acceptance tests to cover the functionality
The text was updated successfully, but these errors were encountered:
As a developer, I would like to pass ZIP archives to resource dependent handlers, so that I do not need to extract the archive first.
Example
Acceptance criteria
IO
moduleThe text was updated successfully, but these errors were encountered: