Skip to content
Brod edited this page Jul 20, 2018 · 6 revisions

Overview

In Jackle there are a two core modules, Handlers and Components, all modules follow a simple Object structure and allow for a lot of flexiblity in regards to how they're composed.

Jackle is being developed as an experiment while I learn more about Redux and wanted to build a small framework similar to Jagwah but with a more minimal approach and redux-like ideas. I'm not completely sold on the immutable wave but it seems interesting enough to give it a crack.

If you get lost or are confused about how Jackle works I highly recommended you read the source, Jackle is less than 200 lines of verbose and commented code so hopefully it isn't too hard to understand.

Getting Started

Install with yarn or npm​

yarn add jackle

Import and start using

import { Jackle } from 'jackle';const jackle = new Jackle();
jackle.parser([...]);
jackle.handler([...]);
jackle.component([...]);
jackle.route([...]);
Clone this wiki locally