1. Quick start
TargetJS is a modern JavaScript UI framework designed to simplify front-end development by introducing a unique paradigm based on literal objects, extending their properties and methods with lifecycles and functional pipelines.
At the heart of TargetJS lies the concept of "Targets". Targets provide a unified wrapper for both properties and methods of JavaScript literal objects. The wrapping process is handled implicitly by the TargetJS engine. The framework's execution cycle run the active targets initially based on the order in which they're written. The execution cycle also ensures that the execution is synchronous.
You can find TargetJS on Github, where all the latest updates and contributions are available:
https://github.com/livetrails/targetjs
To install TargetJS, run the following command in your terminal:
npm install targetj
To start using TargetJS in your project, import the necessary components into your file. Below is an example of what you'll need in the main file that starts the application:
import { App, getEvents } from 'targetj';
This line imports the main components required: App
and getEvents
. The import line is omitted from all our examples because the components are already imported with the page.