wu

Reactive, functional and declarative framework for webapps

View the Project on GitHub migueldelmazo/wu

Third-party libraries

It is very easy to work with third-party libraries using getters, setters and watchers.

React JS

We have developed a module in React JS that integrates with Wu, and that allows:

Render a view automatically when a property of the data model changes, through onChange method.

onChange () {
  return 'user.name'
}

Use getter and setter created in Wu directly from the view, like:

<p>User name: { this.get('userName') }</p>

Use the state or the props to execute a method (from your view or external) through shortcuts:

<button onClick={ this.onEv('userSendLogin', '#state.email', '#state.password') }>Login</button>

See this module at https://github.com/migueldelmazo/wu-reactjs.