DEV Community

Cover image for List of Github Boilerplates
Taki (Kieu Dang)
Taki (Kieu Dang)

Posted on

7 2 1 1 1

List of Github Boilerplates

1. React Boilerplate

Repo: React Boilerplate

  • Why? A well-maintained and production-ready boilerplate for React projects.

2. Next.js Boilerplate

Repo: Next.js Boilerplate

  • Why? Includes TypeScript, ESlint, and Prettier for Next.js projects.

3. Vite + React + TypeScript Boilerplate

Repo: Vite React TypeScript Starter

  • Why? Fast build setup with Vite and React.

4. Vue.js Boilerplate

Repo: Vue Enterprise Boilerplate

  • Why? A professional boilerplate with a focus on scalable architecture.

5. TailwindCSS Starter

Repo: TailwindCSS Boilerplate

  • Why? A quick start for TailwindCSS-based projects.

6. Redux Toolkit + React

Repo: Redux Toolkit Example

  • Why? Perfect for projects requiring Redux state management.

7. TypeScript Starter

Repo: TypeScript Starter Template

  • Why? A starter kit for TypeScript projects, including backend integration.

8. JAMstack Boilerplate

Repo: Eleventy Starter

  • Why? Great for building static sites with modern JAMstack principles.

9. Fullstack Boilerplate

Repo: React-Express Boilerplate

  • Why? Combines React with an Express.js backend for fullstack projects.

10. Webpack Boilerplate

Repo: Webpack Starter Kit

  • Why? Minimalist starter kit for learning and using Webpack.

Sentry blog image

How to reduce TTFB

In the past few years in the web dev world, we’ve seen a significant push towards rendering our websites on the server. Doing so is better for SEO and performs better on low-powered devices, but one thing we had to sacrifice is TTFB.

In this article, we’ll see how we can identify what makes our TTFB high so we can fix it.

Read more

Top comments (0)

The best way to debug slow web pages cover image

The best way to debug slow web pages

Tools like Page Speed Insights and Google Lighthouse are great for providing advice for front end performance issues. But what these tools can’t do, is evaluate performance across your entire stack of distributed services and applications.

Watch video