veganism.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
Veganism Social is a welcoming space on the internet for vegans to connect and engage with the broader decentralized social media community.

Administered by:

Server stats:

293
active users

#nextjs

5 posts4 participants2 posts today
GetNextjs Templates<p>🎨 Typefolio – Free Next.js Portfolio Template<br>A clean, minimal one-page template perfect for developers and designers.<br>✅ Super fast with Next.js<br>✅ Easy to update<br>✅ Mobile-friendly<br>✅ SEO-ready</p><p>📥 Download now: <a href="https://getnextjstemplates.com/products/typefolio-nextjs-template" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">getnextjstemplates.com/product</span><span class="invisible">s/typefolio-nextjs-template</span></a> </p><p><a href="https://mastodon.social/tags/Nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Nextjs</span></a> <a href="https://mastodon.social/tags/Portfolio" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Portfolio</span></a> <a href="https://mastodon.social/tags/WebDesign" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebDesign</span></a> <a href="https://mastodon.social/tags/FrontendDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>FrontendDev</span></a> <a href="https://mastodon.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://mastodon.social/tags/WebTemplates" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebTemplates</span></a></p>
Genta<p>The blog page looks way better than yesterday<br><a href="https://mastodon.social/tags/buildinpublic" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>buildinpublic</span></a> <a href="https://mastodon.social/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a> <a href="https://mastodon.social/tags/tailwindcss" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tailwindcss</span></a></p>
GetNextjs Templates<p>🚀 Launch your next project faster with Dsign – a free Next.js landing page template for SaaS, portfolios &amp; agencies.</p><p>It’s clean, modern, and easy to use – perfect for developers who want to save time and build smarter.</p><p>Get it here: [<a href="https://getnextjstemplates.com/products/dsign-new-nextjs-based-landing-page-template" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">getnextjstemplates.com/product</span><span class="invisible">s/dsign-new-nextjs-based-landing-page-template</span></a>]</p><p><a href="https://mastodon.social/tags/Nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Nextjs</span></a> <a href="https://mastodon.social/tags/WebDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebDev</span></a> <a href="https://mastodon.social/tags/React" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>React</span></a> <a href="https://mastodon.social/tags/Frontend" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Frontend</span></a> <a href="https://mastodon.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a> <a href="https://mastodon.social/tags/websitetemplates" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>websitetemplates</span></a></p>
DevTo VN Bot<p>Chuyên gia phát triển web Md Mohosin Ali chia sẻ kinh nghiệm hơn 2 năm trong việc xây dựng website hiệu suất cao với React.js, Next.js, Vue.js và Tailwind CSS. Chuyển đổi thiết kế (Figma, PSD, XD) thành ứng dụng web đáp ứng, tối ưu SEO.</p><p><a href="https://mastodon.maobui.com/tags/webdevelopment" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>webdevelopment</span></a> <a href="https://mastodon.maobui.com/tags/reactjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>reactjs</span></a> <a href="https://mastodon.maobui.com/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a> <a href="https://mastodon.maobui.com/tags/vuejs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>vuejs</span></a> <a href="https://mastodon.maobui.com/tags/tailwindcss" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tailwindcss</span></a> <a href="https://mastodon.maobui.com/tags/phattriengweb" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>phattriengweb</span></a> <a href="https://mastodon.maobui.com/tags/frontend" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>frontend</span></a> <a href="https://mastodon.maobui.com/tags/backend" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>backend</span></a></p><p><a href="https://dev.to/mohosin2126/build-high-performance-websites-with-reactjs-nextjs-vuejs-and-tailwind-css-6e9" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">dev.to/mohosin2126/build-high-</span><span class="invisible">performance-websites-with-reactjs-nextjs-vuejs-and-tailwind-css-6e9</span></a></p>
Mariusz<p>Day 18</p><p>Today I debugged an issue with accessing backend endpoints from a Next.js frontend talking to a NestJS API.</p><p>The browser was blocking requests due to a CORS error — the Authorization header was not allowed in the preflight response. Even though frontend domains were correctly set, I forgot to include Authorization in allowedHeaders.</p><p>After updating enableCors() to:</p><p>`allowedHeaders: 'Authorization, Content-Type, Accept'`</p><p>…the issue disappeared, and the dashboard successfully fetched the user's subscriptions from the backend.</p><p><a href="https://write.tyolabs.com/2025/07/18/tin-day18-the-cors-error-with-authorization-header/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">write.tyolabs.com/2025/07/18/t</span><span class="invisible">in-day18-the-cors-error-with-authorization-header/</span></a></p><p><a href="https://techhub.social/tags/programming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>programming</span></a> <a href="https://techhub.social/tags/nestjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nestjs</span></a> <a href="https://techhub.social/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a> <a href="https://techhub.social/tags/daybyday" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>daybyday</span></a> <a href="https://techhub.social/tags/fullstack" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>fullstack</span></a> <a href="https://techhub.social/tags/javascript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>javascript</span></a></p>
Martin Wenisch<p>Dneska prichazi liberation day pro Unreleased. Uspesne jsem deployoval prvni projekt na Scaleway VPSky.</p><p>Jako deployment tool jedu <a href="https://kamal-deploy.org" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">kamal-deploy.org</span><span class="invisible"></span></a>, na ktery jsem si brousil zuby hodne dlouho ... a mel jsem vysoke naroky. A musim rict, ze jsem naprosto nadseny. V zasade pokryje vsechny use-casy Vercelu za cenu zeleza na Scaleway.</p><p>Az me prekvapilo, jak bezproblemovy ten flow je. Prakticky resi presne ty problemy, ktere me napadnou pri deployi cehokoli.</p><p><a href="https://mastodon.cesko.digital/tags/it" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>it</span></a> <a href="https://mastodon.cesko.digital/tags/kamal" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>kamal</span></a> <a href="https://mastodon.cesko.digital/tags/devops" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>devops</span></a> <a href="https://mastodon.cesko.digital/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a> <a href="https://mastodon.cesko.digital/tags/vercel" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>vercel</span></a></p>
Ryan Daws 🤓<p>Next.js 15.4 update boosts Turbopack ahead of version 16 <a href="https://www.developer-tech.com/news/next-js-15-4-update-boosts-turbopack-ahead-version-16/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">developer-tech.com/news/next-j</span><span class="invisible">s-15-4-update-boosts-turbopack-ahead-version-16/</span></a> <a href="https://techhub.social/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a> <a href="https://techhub.social/tags/javascript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>javascript</span></a> <a href="https://techhub.social/tags/react" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>react</span></a> <a href="https://techhub.social/tags/coding" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>coding</span></a> <a href="https://techhub.social/tags/programming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>programming</span></a> <a href="https://techhub.social/tags/developers" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>developers</span></a> <a href="https://techhub.social/tags/js" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>js</span></a> <a href="https://techhub.social/tags/opensource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>opensource</span></a> <a href="https://techhub.social/tags/tech" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tech</span></a> <a href="https://techhub.social/tags/news" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>news</span></a> <a href="https://techhub.social/tags/technology" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>technology</span></a></p>
Mariusz<p>Day 16<br>Just published a deep dive into building a secure login page with Next.js, NestJS, JWT, and PostgreSQL.</p><p>- Email verification<br>- Role-based access control<br>- Subscription enforcement<br>- Token decoding in frontend<br>- SQL-level inserts for system roles</p><p>Includes full code snippets and explanation of the entire flow.<br>Perfect if you're working on full-stack apps with JavaScript, TypeScript, and SQL.</p><p><a href="https://write.tyolabs.com/2025/07/11/tin-next-js-login-with-jwt-day16" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">write.tyolabs.com/2025/07/11/t</span><span class="invisible">in-next-js-login-with-jwt-day16</span></a></p><p><a href="https://techhub.social/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a> <a href="https://techhub.social/tags/nestjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nestjs</span></a> <a href="https://techhub.social/tags/typescript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>typescript</span></a> <a href="https://techhub.social/tags/jwt" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>jwt</span></a> <a href="https://techhub.social/tags/sql" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>sql</span></a> <a href="https://techhub.social/tags/fullstack" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>fullstack</span></a> <a href="https://techhub.social/tags/javascript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>javascript</span></a> <a href="https://techhub.social/tags/webdev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>webdev</span></a> <a href="https://techhub.social/tags/programming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>programming</span></a></p>
mariusz<p><strong>Day#16 Secure User Login Flow in a SaaS App Using NestJS and Next.js</strong></p> <p>This post walks through the complete implementation and offers examples of how to structure secure login logic in a modern SaaS application.</p> <p><a href="https://write.tyolabs.com/2025/07/11/tin-next-js-login-with-jwt-day16/" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">write.tyolabs.com/2025/07/11/t</span><span class="invisible">in-next-js-login-with-jwt-day16/</span></a></p>
Prishusoft<p>Boost your Next.js app’s SEO &amp; performance<br> <br>Server-Side Rendering (SSR) isn’t just a buzzword, it’s your ticket to blazing-fast load times, better crawlability, and happier users.<br>• Want to rank higher on Google?<br>• Reduce bounce rates?<br>• Deliver snappy experiences?<br> <br>Read the step-by-step tutorial here:<br><a href="https://prishusoft.com/blog/implement-ssr-nextjs" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">prishusoft.com/blog/implement-</span><span class="invisible">ssr-nextjs</span></a><br> <br>If you’re building with React, this is a must-know.<br>Save it.Share it. Or DM us for help implementing SSR in your project!</p><p><a href="https://mastodon.social/tags/Reactjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Reactjs</span></a> <a href="https://mastodon.social/tags/NextJS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NextJS</span></a> <a href="https://mastodon.social/tags/JavaScript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>JavaScript</span></a> <a href="https://mastodon.social/tags/ssr" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ssr</span></a> <a href="https://mastodon.social/tags/TechBlog" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TechBlog</span></a></p>
Tadashi Shigeoka<p>🚀 Built a serverless GitHub RAG system on Next.js &amp; Vercel. <br>No external queues or vector DBs—just Neon Postgres. <br>Smart ingestion handles API rate limits within an 800-sec window. Simplicity wins! 🏆</p><p><a href="https://giselles.ai/blog/github-vector-store-vercel-constraints" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">giselles.ai/blog/github-vector</span><span class="invisible">-store-vercel-constraints</span></a></p><p><a href="https://mastodon.social/tags/GitHub" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>GitHub</span></a> <a href="https://mastodon.social/tags/RAG" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>RAG</span></a> <a href="https://mastodon.social/tags/Nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Nextjs</span></a> <a href="https://mastodon.social/tags/Vercel" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Vercel</span></a> <a href="https://mastodon.social/tags/Neon" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Neon</span></a></p>
洪 民憙 (Hong Minhee)<p><strong>청개구리 스택 찬가</strong></p> <p><a href="https://hackers.pub/@hongminhee/2025/contrarian-stack" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">hackers.pub/@hongminhee/2025/c</span><span class="invisible">ontrarian-stack</span></a></p>
Romain Crevecoeur<p>À l'Association pour la transition Bas Carbone (ABC), nous sommes à la recherche d'un.e alternant.e pour nous aider à développer notre outil le BC+ dès septembre avec ma super collègue Chloé Molle ! Si vous êtes intéressé.e par des technologies récentes (React/NextJS) et par les sujets environnementaux une seule chose : foncez </p><p>N'hésitez pas à me contacter directement en MP 🌻 </p><p><a href="https://www.linkedin.com/jobs/view/4260059459" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://www.</span><span class="ellipsis">linkedin.com/jobs/view/4260059</span><span class="invisible">459</span></a></p><p><a href="https://mastodon.social/tags/alternance" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>alternance</span></a> <a href="https://mastodon.social/tags/apprentissage" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>apprentissage</span></a> <a href="https://mastodon.social/tags/rouen" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rouen</span></a> <a href="https://mastodon.social/tags/paris" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>paris</span></a> <a href="https://mastodon.social/tags/fullstack" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>fullstack</span></a> <a href="https://mastodon.social/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a></p>
Luke Floden<p>I just got back from my trip to New York to attend <a href="https://mastodon.social/tags/VercelShip2025" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>VercelShip2025</span></a>; what a great experience!</p><p>The closing fireside chat with Guillermo Rauch and Brendan Eich discussing the future of the web was really insightful. Great to hear their perspectives on where we're headed and how to get there.</p><p>The web is evolving rapidly, and companies need engineers who can adapt and build for the future.<br>It's an exciting time to be building on and for the web!</p><p><a href="https://mastodon.social/tags/VercelShip" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>VercelShip</span></a> <a href="https://mastodon.social/tags/WebDevelopment" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebDevelopment</span></a> <a href="https://mastodon.social/tags/NextJS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NextJS</span></a></p>
GetNextjs Templates<p>🍳 Introducing the Chef's Kitchen Free Next.js Template a beautifully crafted landing page for food &amp; chef-related sites.</p><p>Built with React &amp; Next.js, styled using Tailwind CSS, and engineered for fast, simple deployment.<br>Clean structure. Premium design. No hassle.<br>👉 Download here: <a href="https://getnextjstemplates.com/products/chefs-kitchen-free-nextjs-landing-page-template" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">getnextjstemplates.com/product</span><span class="invisible">s/chefs-kitchen-free-nextjs-landing-page-template</span></a></p><p><a href="https://mastodon.social/tags/Nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Nextjs</span></a> <a href="https://mastodon.social/tags/WebDev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>WebDev</span></a> <a href="https://mastodon.social/tags/TailwindCSS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>TailwindCSS</span></a> <a href="https://mastodon.social/tags/OpenSource" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>OpenSource</span></a></p>
Jobs for Developers<p>PlayStation is hiring Senior Software Engineer</p><p>🔧 <a href="https://mastodon.world/tags/c" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>c</span></a> <a href="https://mastodon.world/tags/cplusplus" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>cplusplus</span></a> <a href="https://mastodon.world/tags/javascript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>javascript</span></a> <a href="https://mastodon.world/tags/python" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>python</span></a> <a href="https://mastodon.world/tags/rust" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>rust</span></a> <a href="https://mastodon.world/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a> <a href="https://mastodon.world/tags/react" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>react</span></a> <a href="https://mastodon.world/tags/cicd" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>cicd</span></a> <a href="https://mastodon.world/tags/docker" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>docker</span></a> <a href="https://mastodon.world/tags/kubernetes" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>kubernetes</span></a> <a href="https://mastodon.world/tags/seniorengineer" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>seniorengineer</span></a><br>🌎 San Mateo, California<br>⏰ Full-time<br>🏢 PlayStation</p><p>Job details <a href="https://jobsfordevelopers.com/jobs/senior-software-engineer-at-playstation-com-apr-28-2025-a48f23?utm_source=mastodon.world&amp;utm_medium=social&amp;utm_campaign=posting" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="ellipsis">jobsfordevelopers.com/jobs/sen</span><span class="invisible">ior-software-engineer-at-playstation-com-apr-28-2025-a48f23?utm_source=mastodon.world&amp;utm_medium=social&amp;utm_campaign=posting</span></a><br><a href="https://mastodon.world/tags/jobalert" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>jobalert</span></a> <a href="https://mastodon.world/tags/jobsearch" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>jobsearch</span></a> <a href="https://mastodon.world/tags/hiring" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>hiring</span></a></p>
Brandon Zhang 🇨🇳<p>I was trying to download and try their product for Mac and this happened.</p><p><a href="https://mastodon.online/tags/NextJs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NextJs</span></a> <a href="https://mastodon.online/tags/react" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>react</span></a></p>
kazewaze<p>Soundz - <a href="https://soundzjs.vercel.app" rel="nofollow noopener" translate="no" target="_blank"><span class="invisible">https://</span><span class="">soundzjs.vercel.app</span><span class="invisible"></span></a></p><p>Makes it easy to wrap your UI Elements with Beautiful, Accessible, and Customizable Sound Effects! <a href="https://mastodon.social/tags/html" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>html</span></a> <a href="https://mastodon.social/tags/css" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>css</span></a> <a href="https://mastodon.social/tags/typescript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>typescript</span></a> <a href="https://mastodon.social/tags/ts" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>ts</span></a> <a href="https://mastodon.social/tags/tsx" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>tsx</span></a> <a href="https://mastodon.social/tags/javascript" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>javascript</span></a> <a href="https://mastodon.social/tags/js" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>js</span></a> <a href="https://mastodon.social/tags/jsx" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>jsx</span></a> <a href="https://mastodon.social/tags/react" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>react</span></a> <a href="https://mastodon.social/tags/reactjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>reactjs</span></a> <a href="https://mastodon.social/tags/next" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>next</span></a> <a href="https://mastodon.social/tags/nextjs" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>nextjs</span></a> <a href="https://mastodon.social/tags/component" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>component</span></a> <a href="https://mastodon.social/tags/components" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>components</span></a> <a href="https://mastodon.social/tags/npm" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>npm</span></a> <a href="https://mastodon.social/tags/node" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>node</span></a> <a href="https://mastodon.social/tags/package" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>package</span></a> <a href="https://mastodon.social/tags/npm" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>npm</span></a> <a href="https://mastodon.social/tags/sound" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>sound</span></a> <a href="https://mastodon.social/tags/sounds" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>sounds</span></a> <a href="https://mastodon.social/tags/soundeffects" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>soundeffects</span></a> <a href="https://mastodon.social/tags/accessibility" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>accessibility</span></a> <a href="https://mastodon.social/tags/accessible" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>accessible</span></a> <a href="https://mastodon.social/tags/customization" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>customization</span></a> <a href="https://mastodon.social/tags/easy" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>easy</span></a></p>
Deni Mintsaev 🇪🇺<p>Jeez, my server just tanked itself, cause it ran out of memory, and I had to upgrade it for an extra $6 a month. I really need to finish up this migration of my backend to <a href="https://mastodon.social/tags/NextJS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NextJS</span></a> (with server functions) and DB to <a href="https://mastodon.social/tags/Postgres" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Postgres</span></a> so I can go down from 4 <a href="https://mastodon.social/tags/Docker" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Docker</span></a> containers to just 2.</p><p><a href="https://mastodon.social/tags/webdev" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>webdev</span></a> <a href="https://mastodon.social/tags/coding" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>coding</span></a> <a href="https://mastodon.social/tags/programming" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>programming</span></a></p>
Jon<p>Is there a <a href="https://mastodon.social/tags/Markdown" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Markdown</span></a> parser that handles Markdown in <a href="https://mastodon.social/tags/HTML" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>HTML</span></a> tags in Markdown especially nicely?</p><p>MDX (<a href="https://mastodon.social/tags/NextJS" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>NextJS</span></a>, <a href="https://mastodon.social/tags/Astro" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Astro</span></a>) has a problem (for me) where pretty formatted markup has the tendency to introduce unnecessary &lt;p&gt; wrapping children of tags.</p><p>Marked-It (<a href="https://mastodon.social/tags/11ty" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>11ty</span></a>) is funky and requires a blank line before but not after to process Markdown in HTML - it can't handle inline only Markdown like `**bold**`</p><p>Kramdown (<a href="https://mastodon.social/tags/Jekyll" class="mention hashtag" rel="nofollow noopener" target="_blank">#<span>Jekyll</span></a>) requires explicit opt-ins on HTML tags but I think it mostly works?</p>