{"id":16796572,"url":"https://github.com/leonardomso/react-bolt","last_synced_at":"2025-04-05T20:09:29.090Z","repository":{"id":33273538,"uuid":"138522115","full_name":"leonardomso/react-bolt","owner":"leonardomso","description":"⚡ The most simple \u0026 robust boilerplate for your React projects.","archived":false,"fork":false,"pushed_at":"2022-12-10T16:57:50.000Z","size":3214,"stargazers_count":326,"open_issues_count":24,"forks_count":101,"subscribers_count":16,"default_branch":"master","last_synced_at":"2025-03-29T19:07:25.961Z","etag":null,"topics":["babel","boilerplate","css","cypress","eslint","jest","react","redux","robust","styled-components","webpack"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/leonardomso.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-06-24T23:17:03.000Z","updated_at":"2025-02-03T20:05:57.000Z","dependencies_parsed_at":"2022-09-04T12:00:17.742Z","dependency_job_id":null,"html_url":"https://github.com/leonardomso/react-bolt","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leonardomso%2Freact-bolt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leonardomso%2Freact-bolt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leonardomso%2Freact-bolt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/leonardomso%2Freact-bolt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/leonardomso","download_url":"https://codeload.github.com/leonardomso/react-bolt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247393572,"owners_count":20931813,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["babel","boilerplate","css","cypress","eslint","jest","react","redux","robust","styled-components","webpack"],"created_at":"2024-10-13T09:19:30.569Z","updated_at":"2025-04-05T20:09:29.073Z","avatar_url":"https://github.com/leonardomso.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003ch1 align=\"center\"\u003e\n\u003cbr\u003e\n  \u003ca href=\"https://github.com/leonardomso/react-bolt\"\u003e\u003cimg src=\"https://i.imgur.com/GpQk5wG.png\" alt=\"React Bolt\" width=128\"\u003e\u003c/a\u003e\n\u003cbr\u003e\n\u003cbr\u003e\nReact Bolt\n\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003eThe best boilerplate for your React projects.\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"http://makeapullrequest.com\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square\" alt=\"PRs Welcome\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://opensource.org/licenses/MIT\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square\" alt=\"License MIT\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003chr /\u003e\n\n## Introduction\n\nThis boilerplate contains all you need to start your next React.js project. Simple, robust, well-organized, all you need to do is clone, install and you're ready to start.\n\nI wrote a article for anyone who wants to learn how to build this boilerplate, if you want to learn just click [here](https://medium.freecodecamp.org/a-complete-react-boilerplate-tutorial-from-zero-to-hero-20023e086c4a).\n\nCheck out the lite version [here](https://github.com/dephraiim/react-bolt-lite)\n\n## Features\n\nThis boilerplate features all the latest tools and practices in the industry.\n\n- ⚛ **React** — 16.12.0 with Hooks\n- ♻ **Redux with Redux Thunk** — State Management with middleware to handle async requests\n- 🛠 **Babel** — ES6 syntax, Airbnb \u0026 React/Recommended config\n- 🚀 **Webpack**  — Hot Reloading, Code Splitting, Optimized Build\n- 💅 **CSS** — Styled Components, CSS, Sass\n- ✅  **Tests** — Jest, React Testing Library \u0026 Cypress\n- 💖  **Lint** — ESlint\n- 🐶  **Husky** — Prevent bad commits\n\n## Getting started\n\n1. Clone this repo using `https://github.com/leonardomso/react-bolt.git`\n2. Move to the appropriate directory: `cd react-bolt`.\u003cbr /\u003e\n3. Run `yarn` or `npm install` to install dependencies.\u003cbr /\u003e\n4. Run `npm start` to see the example app at `http://localhost:8080`.\n\n## Commands\n\n- `npm start` - start the dev server\n- `npm run build` - create a production ready build in `dist` folder\n- `npm run lint` - execute an eslint check\n- `npm run lint:fix` - execute an eslint and fix the errors\n- `npm test` - run all tests\n- `npm run test:watch` - run all tests in watch mode\n- `npm run test:cover` - coverage mode\n- `npm run cypress:open` - starts cypress\n\n## Next features:\n\n- [x] **Hot Module Replacement**: Better HMR support;\n- [x] **CSS/Sass support**: Enable CSS/Sass support;\n- [ ] **PWA**: Turn into a PWA boilerplate;\n- [ ] **SEO**: SEO-ready;\n\n## License\n\nMIT license, Copyright (c) 2018 Leonardo Maldonado.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleonardomso%2Freact-bolt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fleonardomso%2Freact-bolt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fleonardomso%2Freact-bolt/lists"}