Bits and Pieces

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

Follow publication

11 React Boilerplates and Starter Kits for 2019

Jonathan Saring
Bits and Pieces
Published in
8 min readJan 31, 2019

React component with Bit

1. Create React App

2. React Boilerplate

3. React Slingshot

4. React starter kit

5. Razzle

6. Rekit

7. React Redux Universal

8. React Go

// to run and render a react router based component
res.render('/account', {});
// or more generically
res.render(req.url, {});

// to render a react view
res.render('index', {});

9. Rebar

10. React PWA

11. React Firebase Starter

Conclusion

Honorable mentions

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in Bits and Pieces

Insightful articles, step-by-step tutorials, and the latest news on full-stack composable software development

Written by Jonathan Saring

I write code and words · Component-driven Software · Micro Frontends · Design Systems · Pizza 🍕 Building open source @ bit.dev

Responses (6)

Write a response

Hello Jonathan!
My name is Tatiana, I’m a Brand Manager representing Plarium-South, an international game development company specializing in mobile and browser games (https://company.plarium.com/).
We would like to translate this article and post it…

--

Thanks, great examples!
Here a mobx starter for your list
https://github.com/MikeBendorf11/mobx-intro-starter

--

Please try "all" template
npx create-react-app project_name --template all

--