Raiondesu / Tuex

A mostly reasonable alternative to Vuex

Home Page:https://npmjs.com/package/tuex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DEPRECATED in favor of vuse-rx

Tuex (beta)

A simpler Vuex alternative written in TypeScript.

Travis branch Codacy branch grade size size npm

(TypeScript + Vuex) - Complexity = Tuex

Tuex is a reactive centralized state management library for Vue.js. It takes heavy inspiration from the Flux pattern (especially Vuex).

The main goal of Tuex is to make state-management less complex for small-scale apps, while also keeping the state flexibile and scalabile.

npm install tuex --save
# or
https://unpkg.com/tuex
// imports or scripts
...
Vue.use(Tuex);

const TuexStore = new Tuex.Store({
  num: 0,

  increase(amount) {
    this.num += amount;
  }
});
...
// Vue component
...
  created() {
    this.$store.increase(10);
    console.log(this.$store.num);
    // => 10

    this.$store.num = -1;
    console.log(this.$store.num);
    // => -1
  }
...

About

A mostly reasonable alternative to Vuex

https://npmjs.com/package/tuex

License:MIT License


Languages

Language:TypeScript 52.1%Language:JavaScript 47.9%