GithubHelp home page GithubHelp logo

kigh143 / easy-peasy Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ctrlplusb/easy-peasy

0.0 0.0 0.0 2.16 MB

Easy peasy state for React

Home Page: https://easy-peasy.now.sh

License: MIT License

JavaScript 85.28% TypeScript 14.33% CSS 0.39%

easy-peasy's Introduction

 

Easy peasy state for React

 

npm MIT License Travis Codecov

Step 1 - Create your store

const store = createStore({
  todos: {
    items: ['Create store', 'Wrap application', 'Use store'],
    add: action((state, payload) => {
      state.items.push(payload)
    })
  }
});

Step 2 - Wrap you application

function App() {
  return (
    <StoreProvider store={store}>
      <TodoList />
    </StoreProvider>
  );
}

Step 3 - Use the store

function TodoList() {
  const todos = useStoreState(state => state.todos.items)
  const add = useStoreActions(actions => actions.todos.add)
  return (
    <div>
      {todos.map((todo, idx) => <div key={idx}>{todo}</div>)}
      <AddTodo onAdd={add} />
    </div>
  )
}

Highlights

  • React hooks based API
  • Simple, intuitive API focusing on speed of development
  • Thunks for data fetching and side effects
  • Selectors for derived data
  • Global, shared, or component level stores
  • Immutable data store under the hood
  • Typescript definitions baked in
  • React Native supported
  • Testing helpers baked in
  • Wraps Redux, all the radness, without the boilerplate
  • Redux Dev Tools support built in
  • Supports Redux middleware and enhancers

Introduction

Easy Peasy provides you with an intuitive API to quickly and easily manage the state for your React application. Batteries are included - no configuration is required to support derived state, API calls, performance optimisation, developer tools etc.

Documentation

The official website contains all the tutorials and documentation you will need to get started.

easy-peasy's People

Contributors

ctrlplusb avatar shoeman22 avatar christianchown avatar ivosh avatar axel-habermaier avatar bdeloeste avatar cevr avatar leiwan5 avatar danielruf avatar giubatt avatar skulptur avatar icflorescu avatar markshust avatar m5r avatar than avatar revskill10 avatar monsieurboutte avatar littlehaker avatar bassplayerch avatar wmik avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.