Learn how to create and run a simple application using Nelgifka's core framework.
Use package manager to add the development framework:
npm create @nelgifka/app@latest my-app
src/app.js
Entry point for app logic
public/index.html
Runtime container
config/app.json
Runtime configuration
import App from './app'
App({
target: '#app',
data: {
message: 'Hello, Nelgifka!'
}
})
Launch the default development server at:
npm run dev