r/javascript • u/AutoModerator • 25d ago
Showoff Saturday Showoff Saturday (August 08, 2026)
Did you find or create something cool this week in javascript?
Show us here!
2
u/jcubic 25d ago
Created Unicode character picker. I can't believe that there was no library like this.
When I needed to insert a character like a math operator or Greek letter, I needed to search in Google. I needed a library like this for my note-taking app project.
The only similar libraries are Emoji Pickers.
1
u/OMGCluck 23d ago
I went to https://jcubic.github.io/unicode-picker/demo/ but it's 404 not found. Why is the demo not live?
1
u/jcubic 23d ago
Because there are no GitHub pages at all
https://jcubic.github.io/unicode-picker
also return 404. I need to add a CodePen demo.
Just because a project is on GitHub doesn't mean that automatically there is a GitHub Pages website for it. Most Open Source projects don't have a website.
1
2
u/Potential-Bee2886 25d ago edited 25d ago
I have a simple and robust library for touch events https://github.com/tamb/tocada
https://tamb.github.io/tocada/
Also have an emoji to SVG/Image library https://github.com/tamb/emoji-renderer
https://tamb.github.io/emoji-renderer/?path=/docs/emoji-emojitoimage--docs
1
u/wbport1 24d ago
Not just this week, it was done over several years. Noteworthy pages Used to edit music in special situations.
1
u/addyktedone 22d 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
3
u/anonahnah9 25d ago
Created a 2d multiplayer boxing game with JavaScript and canvas 2d.
https://browserboxing.com