Popularity
2.3
Stable
Activity
0.0
Stable
132
8
5
Monthly Downloads: 0
Programming language: JavaScript
License: MIT License
Tags:
Utilities
Framework Bindings / Integrations
React
React-component
Mixin
Backbone
React-mixin-manager
Latest version: v1.0.5
react-backbone alternatives and similar libraries
Based on the "Framework bindings / integrations" category.
Alternatively, view react-backbone alternatives based on common mentions on social networks and blogs.
-
react-on-rails
Integration of React + Webpack + Rails + rails/webpacker including server-side rendering of React, enabling a better developer experience and faster client performance. -
react-unity-webgl
React Unity WebGL provides a modern solution for embedding Unity WebGL builds in your React Application while providing advanced APIs for two way communication and interaction between Unity and React. -
backbone-react-component
A bit of nifty glue that automatically plugs your Backbone models and collections into your React components, on the browser and server -
gl-react
DISCONTINUED. OpenGL / WebGL bindings for React to implement complex effects over images and content, in the descriptive VDOM paradigm. -
gl-react-dom
WebGL bindings for React to implement complex effects over images and content, in the descriptive VDOM paradigm -
elm-react-component
DISCONTINUED. A React component which wraps an Elm module to be used in a React application.
Civic Auth - Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management — all implemented with just a few lines of code. Start building today.
Promo
www.civic.com

Do you think we are missing an alternative of react-backbone or a related project?
README
react-backbone
Give Backbone awareness to your React components and so much more.
- give Backbone.Model / Backbone.Collection awareness to your React components
- mixins for updating on model change events, be aware of model xhr activity and model validation events and more
- add Backbone.View like declaritive events to your React components
- add dependency management to your React mixins
- use Backbone.Model-aware input components
- includes managed event bindings which will clean up when the React component is unmounted
This project indludes/depends on the following other projects
Common Examples
React.createClass({
mixins: ['modelChangeAware'],
render: function() {
// will be called any time this.props.model is changed
}
});
React.createClass({
mixins: ['modelXHRAware'],
render: function() {
// this.state.loading will be truthy during any XHR activity initiated by this.props.model
}
});
React.createClass({
mixins: ['modelEvents'],
events: {
'model:foo': 'onFoo',
'*throttle(300)->model:foo': 'onThrottledFoo'
''
},
onFoo: function() {
will be executed when this.props.model triggers the "foo" event
},
onThrottledFoo: function() {
will be executed and throttled (300ms) when this.props.model triggers the "foo" event
},
});
Docs
View the installation and API docs