Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmndrs/react-three-fiber
๐จ๐ญ A React renderer for Three.js
https://github.com/pmndrs/react-three-fiber
3d animation fiber react renderer threejs
Last synced: 3 days ago
JSON representation
๐จ๐ญ A React renderer for Three.js
- Host: GitHub
- URL: https://github.com/pmndrs/react-three-fiber
- Owner: pmndrs
- License: mit
- Created: 2019-02-25T14:31:51.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-09T00:43:36.000Z (26 days ago)
- Last Synced: 2024-10-29T18:05:46.879Z (5 days ago)
- Topics: 3d, animation, fiber, react, renderer, threejs
- Language: TypeScript
- Homepage: https://docs.pmnd.rs/react-three-fiber
- Size: 24.1 MB
- Stars: 27,428
- Watchers: 211
- Forks: 1,573
- Open Issues: 86
-
Metadata Files:
- Readme: readme.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
- awesome-react-cn - react-three-fiber - A React renderer for Three.js (Uncategorized / Uncategorized)
- awesome-universal-react - React Three Fiber - A React renderer for Three.js (Libraries / Renderers)
- awesome-game-engine-dev - react-three-fiber - React renderer for Three.js. (Libraries / JavaScript)
- awesome-learning-resources - react-three-fiber - A React renderer for Three.js (Uncategorized / Uncategorized)
- awesome-dataviz - React Three Fiber
- awesome-webxr - react-three-fiber - A React renderer for three.js. Additional WebXR-specific hooks and components are available in [React XR](https://github.com/pmndrs/react-xr) as well. (Development / Frameworks and Libraries)
- awesome-repos - react-three-fiber
- awesome-list - react-three-fiber
- best-of-react - GitHub - 5% open ยท โฑ๏ธ 04.06.2024): (Data Visualization)
- awesome-react-three-fiber - react-three-fiber
- awesome-threejs - react-three-fiber
- awesome-react - react-three-fiber - A React renderer for Three.js ` ๐ 8 days ago` (React [๐](#readme))
- awesome-react - react-three-fiber - A React renderer for Three.js (**Awesome React** [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) / React)
- awesome - pmndrs/react-three-fiber - ๐จ๐ญ A React renderer for Three.js (TypeScript)
- StarryDivineSky - pmndrs/react-three-fiber
- awesome - pmndrs/react-three-fiber - ๐จ๐ญ A React renderer for Three.js (TypeScript)
- awesome - pmndrs/react-three-fiber - ๐จ๐ญ A React renderer for Three.js (TypeScript)
- awesome - pmndrs/react-three-fiber - ๐จ๐ญ A React renderer for Three.js (TypeScript)
README
@react-three/fiber
[![Version](https://img.shields.io/npm/v/@react-three/fiber?style=flat&colorA=000000&colorB=000000)](https://npmjs.com/package/@react-three/fiber)
[![Downloads](https://img.shields.io/npm/dt/@react-three/fiber.svg?style=flat&colorA=000000&colorB=000000)](https://npmjs.com/package/@react-three/fiber)
[![Twitter](https://img.shields.io/twitter/follow/pmndrs?label=%40pmndrs&style=flat&colorA=000000&colorB=000000&logo=twitter&logoColor=000000)](https://twitter.com/pmndrs)
[![Discord](https://img.shields.io/discord/740090768164651008?style=flat&colorA=000000&colorB=000000&label=discord&logo=discord&logoColor=000000)](https://discord.gg/ZZjjNvJ)
[![Open Collective](https://img.shields.io/opencollective/all/react-three-fiber?style=flat&colorA=000000&colorB=000000)](https://opencollective.com/react-three-fiber)
[![ETH](https://img.shields.io/badge/ETH-f5f5f5?style=flat&colorA=000000&colorB=000000)](https://blockchain.com/eth/address/0x6E3f79Ea1d0dcedeb33D3fC6c34d2B1f156F2682)
[![BTC](https://img.shields.io/badge/BTC-f5f5f5?style=flat&colorA=000000&colorB=000000)](https://blockchain.com/btc/address/36fuguTPxGCNnYZSRdgdh6Ea94brCAjMbH)react-three-fiber is a React renderer for threejs.
Build your scene declaratively with re-usable, self-contained components that react to state, are readily interactive and can participate in React's ecosystem.
```bash
npm install three @types/three @react-three/fiber
```#### Does it have limitations?
None. Everything that works in Threejs will work here without exception.
#### Is it slower than plain Threejs?
No. There is no overhead. Components render outside of React. It outperforms Threejs in scale due to React's scheduling abilities.
#### Can it keep up with frequent feature updates to Threejs?
Yes. It merely expresses Threejs in JSX, `` dynamically turns into `new THREE.Mesh()`. If a new Threejs version adds, removes or changes features, it will be available to you instantly without depending on updates to this library.
### What does it look like?
Let's make a re-usable component that has its own state, reacts to user-input and participates in the render-loop. (live demo).
```jsx
import { createRoot } from 'react-dom/client'
import React, { useRef, useState } from 'react'
import { Canvas, useFrame } from '@react-three/fiber'function Box(props) {
// This reference gives us direct access to the THREE.Mesh object
const ref = useRef()
// Hold state for hovered and clicked events
const [hovered, hover] = useState(false)
const [clicked, click] = useState(false)
// Subscribe this component to the render-loop, rotate the mesh every frame
useFrame((state, delta) => (ref.current.rotation.x += delta))
// Return the view, these are regular Threejs elements expressed in JSX
return (
click(!clicked)}
onPointerOver={(event) => hover(true)}
onPointerOut={(event) => hover(false)}>
)
}createRoot(document.getElementById('root')).render(
,
)
```Show TypeScript example
```bash
npm install @types/three
``````tsx
import * as THREE from 'three'
import { createRoot } from 'react-dom/client'
import React, { useRef, useState } from 'react'
import { Canvas, useFrame, ThreeElements } from '@react-three/fiber'function Box(props: ThreeElements['mesh']) {
const ref = useRef(null!)
const [hovered, hover] = useState(false)
const [clicked, click] = useState(false)
useFrame((state, delta) => (ref.current.rotation.x += delta))
return (
click(!clicked)}
onPointerOver={(event) => hover(true)}
onPointerOut={(event) => hover(false)}>
)
}createRoot(document.getElementById('root') as HTMLElement).render(
,
)
```Live demo: https://codesandbox.io/s/icy-tree-brnsm?file=/src/App.tsx
Show React Native example
This example relies on react 18 and uses `expo-cli`, but you can create a bare project with their template or with the `react-native` CLI.
```bash
# Install expo-cli, this will create our app
npm install expo-cli -g
# Create app and cd into it
expo init my-app
cd my-app
# Install dependencies
npm install three @react-three/fiber@beta react@rc
# Start
expo start
```Some configuration may be required to tell the Metro bundler about your assets if you use `useLoader` or Drei abstractions like `useGLTF` and `useTexture`:
```js
// metro.config.js
module.exports = {
resolver: {
sourceExts: ['js', 'jsx', 'json', 'ts', 'tsx', 'cjs'],
assetExts: ['glb', 'png', 'jpg'],
},
}
``````tsx
import React, { useRef, useState } from 'react'
import { Canvas, useFrame } from '@react-three/fiber/native'
function Box(props) {
const mesh = useRef(null)
const [hovered, setHover] = useState(false)
const [active, setActive] = useState(false)
useFrame((state, delta) => (mesh.current.rotation.x += delta))
return (
setActive(!active)}
onPointerOver={(event) => setHover(true)}
onPointerOut={(event) => setHover(false)}>
)
}
export default function App() {
return (
)
}
```---
# Documentation, tutorials, examples
Visit [docs.pmnd.rs](https://docs.pmnd.rs/react-three-fiber)
# First steps
You need to be versed in both React and Threejs before rushing into this. If you are unsure about React consult the official [React docs](https://react.dev/learn), especially [the section about hooks](https://react.dev/reference/react). As for Threejs, make sure you at least glance over the following links:
1. Make sure you have a [basic grasp of Threejs](https://threejs.org/docs/index.html#manual/en/introduction/Creating-a-scene). Keep that site open.
2. When you know what a scene is, a camera, mesh, geometry, material, fork the [demo above](https://github.com/pmndrs/react-three-fiber#what-does-it-look-like).
3. [Look up](https://threejs.org/docs/index.html#api/en/objects/Mesh) the JSX elements that you see (mesh, ambientLight, etc), _all_ threejs exports are native to three-fiber.
4. Try changing some values, scroll through our [API](https://docs.pmnd.rs/react-three-fiber) to see what the various settings and hooks do.Some helpful material:
- [Threejs-docs](https://threejs.org/docs) and [examples](https://threejs.org/examples)
- [Discover Threejs](https://discoverthreejs.com), especially the [Tips and Tricks](https://discoverthreejs.com/tips-and-tricks) chapter for best practices
- [Bruno Simons Threejs Jouney](https://threejs-journey.com), arguably the best learning resource, now includes a full [R3F chapter](https://threejs-journey.com/lessons/what-are-react-and-react-three-fiber)# Ecosystem
There is a vibrant and extensive eco system around three-fiber, full of libraries, helpers and abstractions.
- [`@react-three/drei`](https://github.com/pmndrs/drei) โ useful helpers, this is an eco system in itself
- [`@react-three/gltfjsx`](https://github.com/pmndrs/gltfjsx) โ turns GLTFs into JSX components
- [`@react-three/postprocessing`](https://github.com/pmndrs/react-postprocessing) โ post-processing effects
- [`@react-three/uikit`](https://github.com/pmndrs/uikit) โ WebGL rendered UI components for three-fiber
- [`@react-three/test-renderer`](https://github.com/pmndrs/react-three-fiber/tree/master/packages/test-renderer) โ for unit tests in node
- [`@react-three/offscreen`](https://github.com/pmndrs/react-three-offscreen) โ offscreen/worker canvas for react-three-fiber
- [`@react-three/flex`](https://github.com/pmndrs/react-three-flex) โ flexbox for react-three-fiber
- [`@react-three/xr`](https://github.com/pmndrs/react-xr) โ VR/AR controllers and events
- [`@react-three/csg`](https://github.com/pmndrs/react-three-csg) โ constructive solid geometry
- [`@react-three/rapier`](https://github.com/pmndrs/react-three-rapier) โ 3D physics using Rapier
- [`@react-three/cannon`](https://github.com/pmndrs/use-cannon) โ 3D physics using Cannon
- [`@react-three/p2`](https://github.com/pmndrs/use-p2) โ 2D physics using P2
- [`@react-three/a11y`](https://github.com/pmndrs/react-three-a11y) โ real a11y for your scene
- [`@react-three/gpu-pathtracer`](https://github.com/pmndrs/react-three-gpu-pathtracer) โ realistic path tracing
- [`create-r3f-app next`](https://github.com/pmndrs/react-three-next) โ nextjs starter
- [`lamina`](https://github.com/pmndrs/lamina) โ layer based shader materials
- [`zustand`](https://github.com/pmndrs/zustand) โ flux based state management
- [`jotai`](https://github.com/pmndrs/jotai) โ atoms based state management
- [`valtio`](https://github.com/pmndrs/valtio) โ proxy based state management
- [`react-spring`](https://github.com/pmndrs/react-spring) โ a spring-physics-based animation library
- [`framer-motion-3d`](https://www.framer.com/docs/three-introduction/) โ framer motion, a popular animation library
- [`use-gesture`](https://github.com/pmndrs/react-use-gesture) โ mouse/touch gestures
- [`leva`](https://github.com/pmndrs/leva) โ create GUI controls in seconds
- [`maath`](https://github.com/pmndrs/maath) โ a kitchen sink for math helpers
- [`miniplex`](https://github.com/hmans/miniplex) โ ECS (entity management system)
- [`composer-suite`](https://github.com/hmans/composer-suite) โ composing shaders, particles, effects and game mechanics
- [`triplex`](https://triplex.dev/) โ scene editor for react-three-fiber
- [`koestlich`](https://github.com/coconut-xr/koestlich) โ UI component library for react-three-fiber[Usage Trend of the @react-three Family](https://npm-compare.com/@react-three/a11y,@react-three/cannon,@react-three/csg,@react-three/drei,@react-three/flex,@react-three/gltfjsx,@react-three/gpu-pathtracer,@react-three/offscreen,@react-three/p2,@react-three/postprocessing,@react-three/rapier,@react-three/test-renderer,@react-three/uikit,@react-three/xr)
# Who is using Three-fiber
A small selection of companies and projects relying on three-fiber.
- [`vercel`](https://www.vercel.com) (design agency)
- [`basement`](https://basement.studio) (design agency)
- [`studio freight`](https://studiofreight.com) (design agency)
- [`14 islands`](https://www.14islands.com) (design agency)
- [`ueno`](https://dribbble.com/ueno) (design agency) โ [video](https://twitter.com/0xca0a/status/1204373807408013312)
- [`flux.ai`](https://www.flux.ai) (PCB builder)
- [`colorful.app`](https://www.colorful.app) (modeller)
- [`bezi`](https://www.bezi.com) (modeller)
- [`readyplayer.me`](https://readyplayer.me) (avatar configurator)
- [`zillow`](https://www.zillow.com) (real estate)
- [`lumalabs.ai/genie`](https://lumalabs.ai/genie) (AI models)
- [`skybox.blockadelabs`](https://skybox.blockadelabs.com) (AI envmaps)
- [`3dconfig`](https://3dconfig.com) (floor planer)
- [`buerli.io`](https://buerli.io) (CAD)
- [`getencube`](https://www.getencube.com) (CAD)
- [`glowbuzzer`](https://www.glowbuzzer.com) (CAD) โ [video](https://twitter.com/glowbuzzer/status/1678396014644940800)
- [`triplex`](https://triplex.dev) (editor) โ [video](https://twitter.com/_douges/status/1708859381369221539)
- [`theatrejs`](https://www.theatrejs.com) (editor) โ [video](https://twitter.com/0xca0a/status/1566838823170068480)# How to contribute
If you like this project, please consider helping out. All contributions are welcome as well as donations to [Opencollective](https://opencollective.com/react-three-fiber), or in crypto `BTC: 36fuguTPxGCNnYZSRdgdh6Ea94brCAjMbH`, `ETH: 0x6E3f79Ea1d0dcedeb33D3fC6c34d2B1f156F2682`.
#### Backers
Thank you to all our backers! ๐
#### Contributors
This project exists thanks to all the people who contribute.