Popularity
2.4
Stable
Activity
0.0
Stable
132
9
5
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. -
reactfire
Hooks, Context Providers, and Components that make it easy to interact with Firebase. -
react-three-renderer
Render into a three.js canvas using React. -
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. -
react-d3-library
Open source library for using D3 in 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 -
reactive-elements
Allows to use React.js component as HTML element (web component) -
react-lottie-player
Fully declarative React Lottie player -
gl-react
OpenGL / WebGL bindings for React to implement complex effects over images and content, in the descriptive VDOM paradigm. -
react-localstorage
Simple componentized localstorage implementation for Facebook's React. -
gl-react-dom
WebGL bindings for React to implement complex effects over images and content, in the descriptive VDOM paradigm -
react-threejs
WIP: Simplest bindings between React & Three.js -
elm-react-component
A React component which wraps an Elm module to be used in a React application.
Appwrite - The open-source backend cloud platform
The open-source backend cloud platform for developing Web, Mobile, and Flutter applications. You can set up your backend faster with real-time APIs for authentication, databases, file storage, cloud functions, and much more!
Promo
appwrite.io
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