Popularity
2.0
Stable
Activity
0.0
Stable
77
10
4
Programming language: JavaScript
react-threejs alternatives and similar libraries
Based on the "Framework bindings / integrations" category.
Alternatively, view react-threejs 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-backbone
backbone-aware mixins for react and a whole lot more -
elm-react-component
A React component which wraps an Elm module to be used in a React application.
Appwrite - The Open Source Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
Do you think we are missing an alternative of react-threejs or a related project?
README
react-threejs
WIP: Simplest bindings between React & Three.js
http://fritx.github.io/react-threejs/example/
See also: vue-threejs
import React, { Component } from 'react'
import { Renderer, Camera, Scene } from 'react-threejs'
render () {
return (<Renderer size={rendererSize}>
<Camera position={{ z: 5 }} />
<Scene>
<MyCube color={0x00ff00} rotation={rotation}>
<MyCube color={0xff0000} position={{ y: 2 }} />
<MyCube color={0x0000ff} position={{ z: 3 }} />
</MyCube>
</Scene>
</Renderer>)
}
// setting FirstPersonControls, PositionalAudio & more
render () {
return (<Renderer size={rendererSize}>
<Scene>
<FirstPersonControls>
<AudioListener />
<Camera />
</FirstPersonControls>
<Mesh rotation={rotation} geometry={geometry} material={material}>
<PositionalAudio url="Project_Utopia.ogg" />
</Mesh>
</Scene>
</Renderer>)
}