Getting Started

Quick guide to start your journey with Eggygyia tools

Welcome to Eggygyia's developer platform. This guide will walk you through the steps to set up your first project using our open-source tools. We'll cover installation, basic configuration, and how to contribute to our ecosystem.

Installation

Install the CLI toolkit to manage projects:

npm create eggygyia@latest

This will create a new project skeleton with default templates

Your First Project

Step 1: Choose Template

Select from our starter templates:

  • • Basic web app
  • • WebAssembly module
  • • SVG animation

Step 2: Configure

Customize:

  • • Project structure
  • • Build tools
  • • Dependency management

Directory Structure


your-project/
├── src/        # Source code
│   └── index.js # Entry point
├── public/     # Static assets
├── package.json 
├── .env        # Configuration
├── README.md

                    

Next Steps

Develop

Build your first module using our SDKs

npm run dev

Test

Run automated tests with our built-in test suite

npm test

Deploy

Publish your work using our CI/CD pipeline

npm deploy