Bundle: tsparticles (Full)
tsparticles is the full bundle and includes a broad set of official features with one loader.
When to choose tsparticles (Full)
- You need many official features without manually selecting plugins.
- You want a complete production-ready baseline before fine-tuning.
- You prefer engine control through the
tsParticlesAPI.
Installation
bash
pnpm add @tsparticles/engine tsparticlesSetup
ts
import { tsParticles } from "@tsparticles/engine";
import { loadFull } from "tsparticles";
await loadFull(tsParticles);
await tsParticles.load({
id: "tsparticles",
options: {
particles: {
number: { value: 100 },
move: { enable: true, speed: 2 },
},
},
});Common pitfalls
- Calling
tsParticles.load(...)beforeloadFull(...). - Assuming this is the same package as
@tsparticles/all(they are different bundles).
Related pages
- Overview:
/guide/bundles - Installation matrix:
/guide/installation
