Skip to content
Hampus Ahlgren edited this page Aug 13, 2017 · 1 revision

Simply.js

We're pretty sure this is as simple as it goes - hence the name.

Why another framework?

The main purpose of Simply is to be as little "frameworky" as possible. That means relying on native javascript wherever possible. Which takes us to the problem definition with writing native javascript today.

  1. Dependency Management
  2. Rendering

Dependency Management

Usually this is solved by using require or some other similar way to help you organise the application in parts and to help those parts build the application back together.

How do we do this natively then? Easy - just use import.

Rendering

Data <-> View management - Every framework out there has their own model of handling this. And it is something you need to really work productively.

Usage

Clone this wiki locally