threejs-fundamentals

Installation
SKILL.md

Three.js Fundamentals

Quick Start

import * as THREE from "three";

// Create scene, camera, renderer
const scene = new THREE.Scene();
const camera = new THREE.PerspectiveCamera(
  75,
  window.innerWidth / window.innerHeight,
  0.1,
  1000,
);
const renderer = new THREE.WebGLRenderer({ antialias: true });
Installs
5.6K
GitHub Stars
2.4K
First Seen
Jan 20, 2026
threejs-fundamentals — cloudai-x/threejs-skills