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

redux-runtypes-schema

v0.1.4

Published

Validates your Redux store against a runtypes type definition

Downloads

14

Readme

Redux Schema via Runtypes

.______    _______  _______   __    __  ___   ___     _____.  ______  __    __   _______ .___  ___.      ___
|   _  \  |   ____||       \ |  |  |  | \  \ /  /    /     | /      ||  |  |  | |   ____||   \/   |     /   \
|  |_)  | |  |__   |  .--.  ||  |  |  |  \  V  /    |   (--`|  ,----'|  |__|  | |  |__   |  \  /  |    /  ^  \
|      /  |   __|  |  |  |  ||  |  |  |   >   <      \   \  |  |     |   __   | |   __|  |  |\/|  |   /  /_\  \
|  |\  \-.|  |____ |  '--'  ||  `--'  |  /  .  \   .--)   | |  `----.|  |  |  | |  |____ |  |  |  |  /  _____  \
| _| `.__||_______||_______/  \______/  /__/ \__\  |_____/   \______||__|  |__| |_______||__|  |__| /__/     \__\

NPM

CircleCI

Introduction

This library provides a reducer that enables full Redux store validation against a known schema defined using the runtypes library.

Inspiration for this library is based on the article Redux and JSON Schema - Two great tastes that go great together.

A common issue with Redux is understanding what your stores schema is (or should be) as your application grows. Running the app and inspecting the store using the Redux dev tools is great for development but is not foolproof, as different reducers may modify the store in inconsistent ways and leave your store in an unexpected state.

This library runs the state returned from the root reducer through runtype validation as a final step. This means that if you dispatch an action and the reducer modifies the store in a way that doesn't match your intended schema, you'll get a validation warning in your console.

Requirements

  • node v8+
  • npm v3+

Owner

redux-runtypes-schema is an open source library developed by Mobify.

Usage

Using redux-runtypes-schema is as easy as passing the root reducer and a runtype definition to the createSchemaReducer function and using that to create your Redux store.

import createSchemaReducer from 'redux-runtypes-schema'
import Runtypes from 'runtypes'

const Schema = Runtypes.Record({
    // Schema defined here using the runtypes library
})

// Set up project reducer(s)
const rootReducer = combineReducers({
    // all top-level keys for project defined here.
})

// Wrap project reducer in schema reducer
const reducer = createSchemaReducer(
    Schema,
    combineReducers(reducers)
)

const store = createStore(reducer)

// TODO: Launch app (render react app with <Provider store={store}>

Developing

Setup

First, get set up to build, test, and run the library:

$ npm install

redux-runtypes-schema is written using TypeScript and built using Rollup. These are both new technologies to Mobify and would be considered to be in the "evaluate" stage of a "technology radar" a la ThoughtWorks..

Running tests

Run all tests with:

$ npm test

Start jest (the testing tool) in "watch" by running:

$ npm run test:watch

This will start jest and watch for file changes. Any time you change a file and save it, jest will automatically re-run affected tests. This is a very efficient way to develop changes/bugfixes for the library.