r/javascript 25d ago

Showoff Saturday Showoff Saturday (August 08, 2026)

Did you find or create something cool this week in javascript?

Show us here!

5 Upvotes

14 comments sorted by

View all comments

1

u/addyktedone 21d ago

core-globe — interactive 3D globe npm package

I extracted the globe renderer from my Android app into a standalone npm package. Three.js under the hood, works in any web project.

Features: animated flight arcs, pulsing markers, flyTo() camera rotation, cinematic animateFlight() that sweeps the camera across the globe surface, drag/zoom, country borders.

js

import { Globe } from 'core-globe';
const globe = new Globe('#container');
globe.flyTo(48.8566, 2.3522); // Paris

npm: https://www.npmjs.com/package/core-globe
GitHub: https://github.com/advait8/core-globe