npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

kamea

v0.0.11

Published

A simple immutable store for es5

Downloads

18

Readme

#Kamea Kamea is a store for producing immutable states in ES5. It was created to address a number of issues with Redux:

  • Objects that aren't truly immutable
  • Object.assign is super useful but also messy and not very precise
  • Asynchronous operations are awkward to implement and require many actions
  • Stuffing everything into a single switch statement

It has some nice features:

  • entirely OOP interface
  • redux devtool extension support for time travel
  • async state modifications without new actions
  • very easily request modifications to next immutable state

Installation

CDN:

<script src="https://unpkg.com/kamea@latest/dist/kamea.min.js"></script>

Stores

Kamea is opinionated in how it creates stores. Often times state is broken down into domains within an application with related behavior per domain. This library makes it easy to create domains that correspond to pieces of the state:

{
  <domain>: {
    <domain specific state>
  }
}

For instance

var store = new Kamea()
store.domain("counter", {
  value: 0
})
store.domain("user", {
  firstName: "Richard",
  lastName: "Anaya"
})

Will create a store initialized with the data

// store.state will be
{
  counter: {
    value: 0
  },
  user: {
    firstName: "Richard",
    lastName: "Anaya"
  }
}

Immutable data

Kamea produces immutable state on each action or commit to the store. To make these new immutable states, we must tell the store what the the next state should look like. This library borrows heavily from a project freezer-js. You can make requests for modifications in three ways.

##Value Modification

var domain = store.domain("counter", {
  value: 0
})
domain.action("increment", function(state,action) {
  state.set("value", state.value + 1);
})

##Object Modification

var domain = store.domain("user", {
  person: {
    firstName:"Richard",
    lastName:"Anaya"
  }
})
domain.action("change_name", function(state,action) {
  state.person.set("firstName", "Eric");
})
domain.action("remove_names", function(state,action) {
  state.person
    .remove("firstName")
    .remove("lastName");
})

##Array Modification

var domain = store.domain("users", {
  names: ["Richard","Howard","Darryl"]
})
domain.action("change_name", function(state,action) {
  state.names.
    .push( "Jack" ) // ["Richard","Howard","Darryl","Jack"]
    .pop() // ["Richard","Howard","Darryl"]
    .unshift( 'Justin' ) // ["Justin","Richard","Howard","Darryl"]
    .shift() // ["Richard","Howard","Darryl"]
    .splice( 1, 1, 'Veronica', 'Shams') // ["Richard","Veronica","Shams","Darryl"]
})

Counter

var store = new Kamea()
var domain = store.domain("counter", {
  value: 0
})
domain.action("increment", function(state,action) {
  state.set("value", state.value + 1);
})
domain.action("decrement", function(state,action) {
  state.set("value", state.value - 1);
})
domain.action("increment_async", function(state,action,commit) {
  setTimeout(function(){
    commit(function(state){
      state.set("value", state.value + 1);
    })
  },1000)
})

console.log(store.state.counter.value)

store.subscribe(function() {
  console.log(store.state.counter.value)
})

store.dispatch({type:"increment"})
store.dispatch({type:"decrement"})
store.dispatch({type:"increment_async"})