
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.
react-3d-text
Advanced tools
A ReactJS component to render a 3D Sphere Text.
By installing this component and writing only a data you can obtain 3D Sphere Text
Install react-3d-text with npm:
npm install react-3d-text
import { SphereText, Sphere3DText ... } from '@react-3d-text'
// Example items
const TEXT_ARR = [
'CSS',
'RN',
'Firebase',
'Storybook',
'Next.js',
'JS/TS',
'gsap',
'React',
'Graphql',
'Redux',
'Tailwind',
'Recoil',
'Python',
'Java',
'npm',
'git',
'Node JS',
'ES5/ES6',
'RTK',
'CSS',
'RN',
'Firebase',
'Storybook',
'Next.js',
'JS/TS',
'gsap',
'React',
'Graphql',
'Redux',
'Tailwind',
'Recoil',
'Python',
'Java',
'npm',
'git',
'Node JS',
'ES5/ES6',
];
type Props = {
/** List of strings to be drawn on a sphere */
textList: string[];
/** The width and height of canvas */
width?: string;
height?: string;
/** Sphere radius */
radius?: number;
/** The distance from the camera to the sphere .*/
distance?: number;
/** The size of text */
fontSize?: number;
/** Default color of the text */
fontColor?: string;
/** Color of the text when mouse over the text. */
hoverColor?: string;
};
import { SphereText } from 'react-3d-text';
function Items() {
return <SphereText textList={TEXT_ARR} width='1000px' height='500px' />;
}
type Props = {
/** List of strings to be drawn on a sphere */
textList: string[];
/** The width and height of canvas */
width?: string;
height?: string;
/** Sphere radius */
radius?: number;
/** The distance from the camera to the sphere .*/
distance?: number;
/** The size of text */
fontSize?: number;
/** Default color of the text */
fontColor?: string = 1.2;
/** Sphere auto rotate */
autoRotate?: boolean = false;
/** Text rotation */
defaultRotation?: { x: number; y: number; z: number } = {
x: 15,
y: 15,
z: 0,
};
/** Text always face to camera */
alwaysFaceCamera?: boolean = true;
};
import { Sphere3DText } from 'react-3d-text';
function Items() {
return <Sphere3DText textList={TEXT_ARR} width='1000px' height='500px' />;
}
FAQs
Hello My name is Hunmok
We found that react-3d-text demonstrated a not healthy version release cadence and project activity because the last version was released 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.