Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

globus

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

globus

Functional reactive JavaScript front-end architecture

  • 0.1.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

Globus

Functional reactive JavaScript front-end architecture


Globus is an opinionated but loosely coupled reactive front-end architecture. It is a combination of the following:

  • Immux state container
  • SimpleImmutable data structures
  • Kjappas template syntax
  • Snabbdom DOM diff algorithm

Globus is not really well documented yet, but there is API documentation on the individual projects, and i am planning to make an example application.

Example app
import { createApp } from "globus";

const reducers = {
  counter: {
    // initial counter state
    initial: {value: 0},

    increment: (state, addend) =>
      state.set("value", state.get("value") + addend || 1)
  }
};

function View($, _) {
  return div(".hello",
    h1("Mandatory counter app"),
    button(
      {
        // Dispatch counter increment action on click
        $click: () => $.counter.increment(1)
      },
      // Show the current value of the counter
      "Value: " + _.counter.value)
  );
}

document.addEventListener("DOMContentLoaded", function() {
  createApp(reducers, View);
});
Suggested folder structure
my-application/
  reducers/
  views/
  actions/
  lib/
    transport/
    data/
    validation/

Larger applications may introduce an additional domain level:

my-application/
  core/
    reducers/
    views/
    actions/
    lib/
      transport/
      data/
  users/
    reducers/
    views/
    actions/
    lib/
      validation/
  • reducers is for describing state changes only. no other side effects.
  • actions contain functions that may invoke reducersm while doing other io, like calling backend actions etc
  • views contain view templates, and possibly helper functions
  • lib contains helper functions, as well as stuff like
  • lib/transport data adapters for server communtication, converters,
  • lib/data functions dealing with internal data formats, like resource representations, and
  • lib/validation validator functions

Keywords

FAQs

Package last updated on 30 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc