Skip to content

How to get Zinc's source code

lockieluke edited this page Jan 4, 2021 · 1 revision

How to get Zinc's source code?

Woah! Zinc is such a performant and secure browser but wait... How can I get its source code and try digging inside the browser 🤔? In fact, it's very simple and just need some commands and it's done!

Required Programs:

So now let's get started:

  1. Clone the repository on your disk using Git or GitHub CLI(The flag --recursive is very important!!!)

    git clone https://github.com/lockieluke/Zinc.git --recursive
    // or using GitHub CLI
    gh repo clone lockieluke/Zinc -- --recursive
  2. Change directory in Zinc

    cd Zinc
  3. Install all the dependencies just to make sure

    yarn install
  4. Is there more? Yes run this just to make sure everything is going on the right track.

    yarn update-submodules
  5. Head to another wiki page to learn more about how to start Zinc!

Clone this wiki locally