GithubHelp home page GithubHelp logo

azizhk / react-chopper Goto Github PK

View Code? Open in Web Editor NEW

This project forked from pawarvijay/react-chopper

0.0 1.0 0.0 209 KB

Two way binding in reactjs made possible with javascript proxies

License: MIT License

Ruby 1.03% JavaScript 98.97%

react-chopper's Introduction

react-chopper

Two way binding in react with javascript proxies

No need to remember this.setState()

No need to manage state in redux

No need to use other libraries for state management

Use reactjs almost like angular

CircleCI status Coverage Status

Below code does not contains this.setState

import React, { Component } from 'react';
import { render } from 'react-dom';
import ReactChopper from 'react-chopper';

class App extends Component {
  constructor(props) {
    super(props);
    this.state = {
      name: 'React'
    };
    this.modal = ReactChopper(this.state, this);
  }
  render() {
    return (
      <div>
        <input
          name={this.modal.name}
          onChange={e => this.modal.name = e.target.value} />
        <p>
          Bang Bang {this.modal.name}
        </p>
      </div>
    );
  }
}

render(<App />, document.getElementById('root'));

Aim

Not to develop insecurity by making it higherorder component and wrapping whole react component like other libraries.

Make every develop know whats under the hood its Javascript Proxies.

It will be doing one task only , is to watch any changes on target object and do setState underthehood.

This lib won't be doing multiple task like other react libs do Eg : redux-form , react-form , react-validation ect .. developers pickup these libs for validation and land up doing state management , which is filled up with its limitations and ultimately creating spagetti code.

TODO

  • Write initial testcases
  • Integrate with circleci
  • Add coveralls support
  • A Simple demo sandbox app made from react-chopper
  • A Complex computation demo sandbox app made from react-chopper
  • A Super complex computation demo sandbox app made from react-chopper
  • Documentation about
  • Testcase that uses react-chopper lib from npm
  • Write some more Complex testcase scenarios for testing
  • Use rollupjs instead of webpack
  • Create seperate develop for all developer experiments
  • Setup mechanism to push tested code to master branch
  • Deploy package on npm from circleci from master branch

react-chopper's People

Contributors

aniruddhashevle avatar

Watchers

 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.