Skip to main content

Introduction

Project Structure

aadhan-games
|── routes
│ ├── sudoko
| ├── spelling-bee
│ └── 2048
|── styles
│ └── styles.css
│── services
│ ├── 2048Service.js
│ └── index.js

Aadhan projects are built using various powerful frameworks.

Let's explore frameworks.

Framework

Getting Started

Remix

What you'll need

  • Node.js version 18.0 or above:
    • When installing Node.js, you are recommended to check all checkboxes related to dependencies.

Generate a new site

Generate a new remix site using the classic templates in Remix Docs.

npm create cloudflare@latest -- my-remix-app --framework=remix

You can type this command into Command Prompt, Powershell, Terminal, or any other integrated terminal of your code editor.

Start project

Run the development server:

cd project-folder-name
npm run dev