
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
xr-postprocessing
Advanced tools
🥽 Declarative WebXR-compatible postprocessing effects for React Three Fiber. Stereo-aware visual effects that work seamlessly in VR/AR and standard 3D rendering.
🥽 WebXR-compatible postprocessing effects for React Three Fiber. Stereo-aware visual effects that work in VR, AR, and standard 3D.
npm install xr-postprocessing
# or
pnpm add xr-postprocessing
import { Canvas } from '@react-three/fiber'
import { createXRStore, XR } from '@react-three/xr'
import { XREffectComposer, Bloom } from 'xr-postprocessing'
const store = createXRStore()
function App() {
return (
<>
<button onClick={() => store.enterVR()}>Enter VR</button>
<button onClick={() => store.enterAR()}>Enter AR</button>
<Canvas>
<XR store={store}>
{/* your scene */}
<ambientLight />
<mesh>
<boxGeometry />
<meshStandardMaterial color="hotpink" />
</mesh>
{/* add effects inside XR */}
<XREffectComposer>
<Bloom strength={1.5} threshold={0.8} />
</XREffectComposer>
</XR>
</Canvas>
</>
)
}
<Bloom strength={1.0} threshold={0.8} radius={1.0} steps={5} />
unreal engine style bloom with more artistic control
<UnrealBloom strength={0.2} radius={0.0} threshold={0.5} />
edge detection for a cel-shaded or outlined look
<Sobel />
<Blur />
<Pixelate pixelSize={8} />
XREffectComposer - main composer componentuseEffectComposer - hook for custom effectsBloom - bloom effectUnrealBloom - unreal-style bloomSobel - edge detectionBlur - blur effectPixelate - pixelation effectMIT
FAQs
🥽 Declarative WebXR-compatible postprocessing effects for React Three Fiber. Stereo-aware visual effects that work seamlessly in VR/AR and standard 3D rendering.
We found that xr-postprocessing demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.