Learn by doing with guided walkthroughs of common tasks and integrations.
Learn the basics of the Nelgifka framework through simple examples and foundational principles.
Get StartedDive deeper into real-time communication, component architecture, and data flow.
View LessonsMaster performance optimization, state management, and integration techniques.
See DetailsCreate a simple hello world application to understand the basic project structure and build system.
npx nelgifka create-app my-first-project
cd my-first-project
npm start
Creating new Nelgifka App in my-first-project... Installing dependencies... Done! Started development server. Project is running at http://localhost:3000
Learn how to manage component state with built-in hooks and create interactive UIs.
import { useState } from '@nelgifka/react';
function Counter() {
const [count, setCount] = useState(0);
return (
<div>
<p>Count: {count}</p>
<button onClick={() => setCount(count + 1)}>+1</button>
</div>
);
}
Use profiling tools and optimization techniques to ensure your applications run efficiently even under high load.