# Guides

This section will guide you step by step to get started with Dynamic Framework, from installation to your first functional application.

# Section Contents

# Installation

All available methods to install Dynamic Framework:

  • Installation with Modyo CLI
  • Integration in Modyo Platform
  • Installation via CDN
  • Installation via NPM

# First Application

Step-by-step tutorial to create your first banking application:

  • Initial setup
  • Basic components
  • API connections
  • Deployment

# Project Structure

Understand the organization of a Dynamic project:

  • Folder structure
  • Configuration files
  • Best practices
  • Conventions

# Prerequisites

Before starting, make sure you have:

  • Node.js v20 or higher
  • NPM 10.x or higher
  • Git for version control
  • Modyo Account with access to Dynamic Framework

# 3-Minute Quick Start

If you already meet the prerequisites, you can start immediately:

# 1. Create project with Dynamic template
npx @modyo/cli@latest get dynamic-react-base-template my-bank

# 2. Install dependencies
cd my-bank && npm install

# 3. Start development server
npm start

Your application will be available at http://localhost:8080 🎉

# Learning Paths

# For Developers New to Dynamic

  1. Read about What is Dynamic?
  2. Follow the Installation guide
  3. Complete the First Application tutorial
  4. Explore the Components

# For Experienced Developers

  1. Review the Project Structure
  2. Explore Pre-designed Experiences
  3. Learn about Customization
  4. Implement API Integrations

# Support Resources

# Need Help?

If you encounter problems during startup:

  1. Check common FAQs (opens new window)
  2. Search in the community (opens new window)
  3. Contact technical support (opens new window)

# Next Step

→ Continue with Installation