Skip to content
Novus Examples
zip1.4 KB

Static Website Project (ZIP)

A realistic static-website project bundled as a ZIP — index.html with linked CSS, JS, and an SVG logo, plus a README. For testing project extraction, unpack-then-serve pipelines, and nested-folder handling.

Archive contents — 5 entrieszip
  • index.html
  • style.css
  • app.js
  • logo.svg
  • README.md

Specifications

Format
ZIP (deflate)
Members
5
Contains
HTML, CSS, JS, SVG, README

What is a .zip file?

ZIP is a widely supported archive format that bundles multiple files and directories into one container, typically with per-file DEFLATE compression and a central directory index. It supports random access to individual entries without decompressing the whole archive. It underlies many document formats such as DOCX and EPUB.

How to use this file

Use an example ZIP to test archive extraction, central-directory parsing, per-entry decompression, and protection against path-traversal (zip-slip) during unpacking.

Code examples

unzip -l demo-site.zip     # list members
unzip demo-site.zip -d out/  # extract

Generated by generation/archives_extra.py. Free for any use, no attribution required — license.