Skip to content

MetaMask/metamask-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

9e4f5a2 · Mar 18, 2025
Mar 1, 2025
Feb 27, 2025
Mar 4, 2025
Mar 12, 2025
May 2, 2024
Mar 4, 2025
Mar 18, 2025
Mar 16, 2025
Mar 18, 2025
Feb 28, 2025
Mar 16, 2025
Oct 31, 2024
May 23, 2024
Feb 27, 2025
Oct 21, 2024
Jan 28, 2025
Feb 24, 2023
Jan 30, 2025
Oct 9, 2024
Jan 23, 2023
Jul 16, 2024
Jul 16, 2024
Feb 27, 2025
Sep 27, 2024
Mar 17, 2025
Mar 16, 2025
Mar 13, 2025
Jul 16, 2024
Mar 4, 2024
Sep 27, 2024
Jan 30, 2025
Jan 28, 2025

MetaMask developer documentation

This is the MetaMask developer documentation repository. The documentation site is hosted at docs.metamask.io, and it's built using Docusaurus, a static site generator purpose-built for technical documentation.

Build locally

Build the documentation site locally using the following steps.

Prerequisites

Steps

  1. Clone the repository.

    git clone https://github.com/MetaMask/metamask-docs.git
    cd metamask-docs

    Note: If you don't have write access to this repository, you must fork the repository to your personal account and clone your forked repository instead. Add an upstream remote to be able to pull from and push to the original repository.

    git clone https://github.com/<YOUR-USERNAME>/metamask-docs.git
    cd metamask-docs
    git remote add upstream https://github.com/MetaMask/metamask-docs.git
  2. Install dependencies.

    npm install
  3. Start the development server.

    npm start

    Once the server starts, you can view the documentation at http://localhost:3000.

For more information on contributing to the documentation, see the full contribution guidelines.