Getting Started

Your First Project with Nelgifka

Learn how to create and run a simple application using Nelgifka's core framework.

🛠 Install Dependency 🧁 App Structure Basics

1. Setup Project

Install CLI Tool

Use package manager to add the development framework:

npm create @nelgifka/app@latest my-app
  • Auto configures base folder with dev scripts
  • Installs required dependencies recursively

2. App Architecture

Core Files

src/app.js

Entry point for app logic

public/index.html

Runtime container

config/app.json

Runtime configuration

Startup Script

import App from './app'

App({
  target: '#app',
  data: {
    message: 'Hello, Nelgifka!'
  }
})

Launch the default development server at:

npm run dev

What's Next?

Build Features

Explore API

Advanced Features

Expand Capabilities
```