Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
React Starter Kit | 22,295 | 1 | 7 | 2 days ago | 23 | March 07, 2016 | 5 | mit | TypeScript | |
The web's most popular Jamstack front-end template (boilerplate) for building web applications with React | ||||||||||
React Redux Starter Kit | 10,414 | 4 | 6 years ago | 1 | March 16, 2016 | 130 | mit | JavaScript | ||
Get started with React, Redux, and React-Router. | ||||||||||
React Slingshot | 9,757 | 2 | 2 months ago | 8 | August 03, 2017 | 88 | mit | JavaScript | ||
React + Redux starter kit / boilerplate with Babel, hot reloading, testing, linting and a working example app built in | ||||||||||
Kittentricks | 6,975 | 9 months ago | 20 | mit | TypeScript | |||||
React Native starter kit with over 40 screens and modern Light and Dark theme for creating stunning cross-platform mobile applications. | ||||||||||
Pepperoni App Kit | 4,645 | 2 | 5 months ago | 4 | March 24, 2017 | 71 | mit | JavaScript | ||
Pepperoni - React Native App Starter Kit for Android and iOS | ||||||||||
Element Starter | 3,052 | a year ago | 46 | JavaScript | ||||||
A starter kit for Element UI generated by vue-cli | ||||||||||
Emacs Starter Kit | 2,886 | 6 years ago | 23 | gpl-3.0 | ||||||
Because the Emacs defaults are not so great sometimes. | ||||||||||
Arc | 2,798 | 2 | 2 years ago | 18 | April 25, 2017 | 62 | JavaScript | |||
React starter kit based on Atomic Design | ||||||||||
Go Starter Kit | 2,786 | 6 years ago | 1 | June 15, 2017 | 17 | other | Go | |||
Golang isomorphic react/hot reloadable/redux/css-modules/SSR starter kit | ||||||||||
React Most Wanted | 2,415 | 8 | 3 months ago | 98 | October 18, 2022 | 18 | mit | JavaScript | ||
React starter kit with "Most Wanted" application features |
ARc (Atomic React) is a React starter kit based on the Atomic Design methodology. It's progressive, which means that you can start with the basic boilerplate and try the other features when you are comfortable.
If you find this useful, please check out Reakit, a toolkit for building composable UI with React.
master
The basic stack with React, Webpack, react-router and Jest.
redux
(compare)
Master plus redux, redux-saga and redux-form.
redux-ssr
(compare)
Redux plus Server Side Rendering
I've been a web developer for the past 14 years and after dealing with IE vs. Netscape wars, <table>
layouts and flash websites, I can say that we are now living in the best moment in web development. Web components are awesome and React makes it better.
React encourages you to create very small and pure components. However, as your project grows, you will have an increasingly complex components folder. At some point, this will be really huge and hard to maintain.
I had a React project with more than 100 components in the components
folder. The first approach I tried to organize it was separating the components by domain (described here), but I realized that most of my components didn't belong to any domain, but were shared. This meant that my problems just moved to the commons
folder.
The Atomic Design approach comes handy to solve this problem because it considers the reusability through composition, which is actually what React is. You will have your minimal/stylish components in one folder, pages in another and so on.
Just clone one of the ARc branches:
$ git clone -b master https://github.com/diegohaz/arc my-app
$ cd my-app
You will probably want to remove ARc git history and start a brand new repository:
$ rm -rf .git
$ git init
$ npm install
$ npm run dev
It will start the development server with HMR on top of it.
http://localhost:3000 — Development server
http://localhost:3001 — Webpack assets server (forredux-ssr
only)
Now you can open http://localhost:3000 in browser and start developing.
When submitting an issue, use the following patterns in the title for better understanding:
[v0.3.1-redux] Something wrong is not right # the v0.3.1 release of the redux branch
[redux] Something wrong is not right # the actual code of the redux branch
Something wrong is right # general, related to master or not directly related to any branch
PRs are very appreciated. For bugs/features consider creating an issue before sending a PR.
MIT © Diego Haz