DEV Community

Cover image for From Folder Tree to ZIP File in Seconds – Introducing ZipHive
Darshan
Darshan

Posted on • Edited on

From Folder Tree to ZIP File in Seconds – Introducing ZipHive

Paste. Click. Zip. — Meet ZipHive

Creating file and folder structures manually can be a drag — especially when all you want is to test an idea, build a quick prototype, or share a mock project with someone.

So I built ZipHive — a simple, free tool that converts text-based folder trees into real ZIP files, instantly.

Why I built this

I got tired of setting up folders over and over again — especially for small ideas, code samples, or when working with AI like ChatGPT or DeepSeek. Often, I’d get a full project file structure as output and have to manually recreate it.

I thought: Why not build a tool where I can just paste the structure and download a zip right away?

How it works

Just paste a text structure like this:

project/
├── backend/
│ ├── main.py
│ └── requirements.txt
└── frontend/
  ├── app/
  │ └── layout.tsx
  └── README.md
Enter fullscreen mode Exit fullscreen mode

or like this:

project/
  backend/
    main.py
    requirements.txt
  frontend/
    app/
      layout.tsx
    README.md
Enter fullscreen mode Exit fullscreen mode

Click "Generate," and boom — you get a working .zip with folders and empty files, ready to start coding.

Use Cases

  • Fast prototyping
  • Bootstrapping AI-generated projects
  • Teaching / tutorials
  • Coding challenges and exercises
  • Sharing mock projects

No login. No setup. No BS.

Try it out: https://ziphive.js.org

I'd love feedback, feature ideas, or weird edge cases it should support!


Built for vibe coders, educators, and anyone tired of mkdir-ing all day.

Top comments (3)

Collapse
 
ihssmaheel profile image
Mohamed Ismail

Cool bro! I made a similar website too. When I checked it after building, it looked kinda the same.

Collapse
 
dqrshan profile image
Darshan

That's amazing! Could you share the link so I could check it out?

Collapse
 
ihssmaheel profile image
Mohamed Ismail

Hey Darshan, sorry for the delay. Here is the link: fylz-for-dev.netlify.app
Please share your feedback.