Installation Guide

Step-by-step instructions to set up and configure Eggygyia tools

Getting Ready

This guide will help you install and configure the Eggygyia development tools on your system. We support all major operating systems and package managers.

Requirements

  • Node.js 14+
  • WebAssembly support
  • Modern web browser

OS Support

  • macOS Ventura+
  • Windows 10+
  • Linux (Ubuntu / Debian / Arch)

Package Managers

  • npm / yarn / pnpm
  • Homebrew
  • Scoop

Installation Steps

Step 1: Install Core Tools

Install the development CLI and SDK.

npm create eggygyia@latest

This will scaffold a new project with the latest Eggygyia tools installed.

Step 2: Configure Runtime

Set up your development environment.

eggygyia init

This command will generate your configuration and install necessary dependencies.

Step 3: Start Development

Launch the development server.

npm run dev

Open your browser to view the sample project at localhost:3000.

Step 4: Build Production

Generate optimized assets for deployment.

npm run build

Output will be in the dist/ directory.

Verify Installation

Run the following command to check installed versions:

eggygyia --version

You should see something like: Eggygyia v0.8.0

Common Issues

Permission Errors

Try running the command with elevated permissions using sudo/powershell as admin.

Missing Dependencies

Make sure all required packages (node-gyp) are installed globally.

Successful Installation

You should now have all necessary tools running smoothly!