> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cosmos.network/llms.txt
> Use this file to discover all available pages before exploring further.

# Node Tutorial

> Version: v0.54

This guide covers everything you need to run, configure, and maintain a Cosmos SDK node. Whether you're setting up a local development node, deploying to a testnet, or running production infrastructure, you'll find step-by-step instructions and best practices.

The node tutorial uses the `simapp` example application and its corresponding CLI binary `simd` as the blockchain application and CLI. You can view the source code for `simapp` [on GitHub](https://github.com/cosmos/cosmos-sdk/tree/main/simapp).

<CardGroup cols={2}>
  <Card title="Get Started" icon="play" href="/sdk/latest/node/prerequisites">
    Learn the fundamentals of running a node, from initial setup through keyring management and starting your node.
  </Card>

  <Card title="Interacting with a Node" icon="terminal" href="/sdk/latest/node/interact-node">
    Connect to your node and query data using CLI, gRPC, or REST endpoints.
  </Card>

  <Card title="Generating, Signing and Broadcasting Transactions" icon="paper-plane" href="/sdk/latest/node/txs">
    Create, sign, and broadcast transactions to your node using various methods.
  </Card>

  <Card title="Testnet & Production" icon="server" href="/sdk/latest/node/run-production">
    Configure and deploy nodes for testnet environments and production networks.
  </Card>

  <Card title="Telemetry" icon="chart-line" href="/sdk/latest/guides/testing/telemetry">
    Monitor your node's health and performance using built-in telemetry and metrics collection.
  </Card>

  <Card title="Upgrades & Migrations" icon="arrow-up" href="/sdk/latest/guides/upgrades/upgrade">
    Manage chain upgrades and migrations safely using in-place upgrade mechanisms and Cosmovisor.
  </Card>
</CardGroup>
