pict-application
v1.0.33
Published
Application base class for a pict view-based application
Readme
Pict Application
Application base class for building pict view-based applications. Provides structured lifecycle management, view coordination, and data marshaling for web, console, and other applications where the UI is primarily represented as text strings.
Installation
npm install pict-applicationUsage
const libPict = require('pict');
const libPictApplication = require('pict-application');
// Create a Pict instance
const _Pict = new libPict();
// Add an application
const myApp = _Pict.addApplication('MyApp', {
Name: 'My Application',
MainViewportViewIdentifier: 'Main-View',
AutoRenderMainViewportViewAfterInitialize: true
}, libPictApplication);
// Initialize the application
myApp.initialize();Documentation
- README - Full documentation and API reference
- Getting Started - Step-by-step tutorial
- Configuration - Complete configuration reference
- Examples - Example application walkthroughs
Related Projects
- pict - Core Pict framework
- pict-view - View base class
- pict-provider - Provider base class
- fable - Service provider framework
Related Packages
- pict - MVC application framework
- pict-view - View base class
- pict-provider - Data provider base class
- fable - Application services framework
License
MIT
Contributing
Pull requests are welcome. For details on our code of conduct, contribution process, and testing requirements, see the Retold Contributing Guide.
