Getting Started with Gno
May 16, 2025 ยท View on GitHub
This repository is intentionally kept minimal and simple. It's designed to help you get your first experience with Gno in under five minutes, focusing on the most common tools and basic concepts.
If you're already familiar with Gno or looking for a more comprehensive setup, check out the "Next Steps" section below for links to more advanced resources.
Quick Start
-
Clone this repository:
git clone https://github.com/gnolang/getting-started.git cd getting-started -
Install dependencies:
make install
This will check if Go is installed and install the required Gno tools.
-
Start the development server:
make dev -
Open your browser and visit https://localhost:8888
What's Included
This repository contains a simple Gno realm with:
- A
Renderfunction that displays a welcome message and instructions - A
Setfunction to update the realm's state - A
Getfunction to retrieve the stored message
Next Steps
Ready to learn more? Check out these resources:
- Gno Documentation: https://docs.gno.land
- Gno Repository Template: https://github.com/gnolang/repo-template