# Playground Scripts - Export code as ZIP file

**URL:** https://forum.flow.com/t/playground-scripts-export-code-as-zip-file/509
**Category:** 🛠 Developer Tools
**Created:** [July 26, 2020, 10:25pm UTC](https://forum.flow.com/t/playground-scripts-export-code-as-zip-file/509 "2020-07-26T22:25:31Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![MaxStarka](https://sea2.discourse-cdn.com/flex022/user_avatar/forum.flow.com/maxstarka/32/56_2.png) [@MaxStarka](https://forum.flow.com/u/MaxStarka)
#### Post date: [July 26, 2020, 10:25pm UTC](https://forum.flow.com/t/playground-scripts-export-code-as-zip-file/509/1 "2020-07-26T22:25:31Z")

</div>

Greetings, everyone!  
I’ve created a little script, which will allow you to export all your contracts, transactions and scripts in a form of a ZIP file. It will also inherit contract name if it was deployed before export.

In order to use it, you will need to open dev tools and paste following code into the console and then press enter to execute it:

```auto
var script = document.createElement("script");
document.body.appendChild(script);
script.src = "https://maxstalker.github.io/flow-playground-scripts/export-files.js";

```

It will pull a javascript file hosted on GitHub, which will do all the dirty work for you 😉

You can take a look at source files and instructions here:

> **[GitHub - MaxStalker/flow-playground-scripts](https://github.com/MaxStalker/flow-playground-scripts)**
>
> Contribute to MaxStalker/flow-playground-scripts development by creating an account on GitHub.
