I Built a Free URL Slug Generator with Next.js 16 — Open Source
A developer created a free URL slug generator using Next.js 16, aimed at providing a fast and private solution for generating SEO-friendly slugs. The tool supports multiple languages and offers features like real-time previews and custom separators. It is open source and available on GitHub for public use.
- ▪The URL slug generator converts text into clean, SEO-friendly slugs.
- ▪It supports six languages and includes features like Unicode transliteration and max length control.
- ▪The project is MIT licensed and can be found on GitHub.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 3943316) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } 冷眼财富 Posted on May 21 I Built a Free URL Slug Generator with Next.js 16 — Open Source #ai I needed a quick slug generator for my projects and couldn't find one that was fast, private, and supported multiple languages. So I built one.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).