{"id":17966237,"url":"https://github.com/lnked/react-starter","last_synced_at":"2025-03-25T07:31:33.649Z","repository":{"id":16597197,"uuid":"80319441","full_name":"lnked/react-starter","owner":"lnked","description":"React Starter Kit","archived":false,"fork":false,"pushed_at":"2022-02-09T23:01:07.000Z","size":62002,"stargazers_count":13,"open_issues_count":8,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-19T13:26:52.445Z","etag":null,"topics":["linters","mobx","postcss","pwa","react","react-router-v4","react-starter-kit","styled-components","tests","typescript","webpack4"],"latest_commit_sha":null,"homepage":"https://lnked.github.io/react-starter","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lnked.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-01-29T00:03:55.000Z","updated_at":"2023-11-21T22:23:16.000Z","dependencies_parsed_at":"2022-08-07T08:15:29.477Z","dependency_job_id":null,"html_url":"https://github.com/lnked/react-starter","commit_stats":null,"previous_names":["lnked/react-template"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnked%2Freact-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnked%2Freact-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnked%2Freact-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lnked%2Freact-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lnked","download_url":"https://codeload.github.com/lnked/react-starter/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245372382,"owners_count":20604492,"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":["linters","mobx","postcss","pwa","react","react-router-v4","react-starter-kit","styled-components","tests","typescript","webpack4"],"created_at":"2024-10-29T13:08:36.615Z","updated_at":"2025-03-25T07:31:33.301Z","avatar_url":"https://github.com/lnked.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![license](https://img.shields.io/github/license/lnked/react-starter.svg)](https://github.com/lnked/react-starter/blob/fastest/LICENSE)\n[![Build Status](https://travis-ci.org/lnked/react-starter.svg?branch=master)](https://travis-ci.org/lnked/react-starter)\n\n[![Code Climate](https://codeclimate.com/github/lnked/react-starter/badges/gpa.svg)](https://codeclimate.com/github/lnked/react-starter)\n[![Issue Count](https://codeclimate.com/github/lnked/react-starter/badges/issue_count.svg)](https://codeclimate.com/github/lnked/react-starter)\n\n---\n\nReact-starter a react web starter kit.\n\n## Installation\n\n#### GIT\n\n```bash\ngit clone -b master git@github.com:lnked/react-starter.git\n```\n\nOR\n\n```bash\ngit init\ngit remote add origin git@github.com:lnked/react-starter.git\ngit fetch origin\ngit pull origin master\n```\n\nThen run command\n\n```bash\nyarn\n```\n\nOR\n\n```bash\nnpm i\n```\n\n## Run tasks\n\nStart dev-server\n\n```bash\nyarn start\n```\n\nBuild without compress\n\n```bash\nyarn build\n```\n\nBuild with compress\n\n```bash\nyarn release\n```\n\nAnalyze code\n\n```bash\nyarn analyze\n```\n\nStats\n\n```bash\nyarn stats\n```\n\nLint scripts\n\n```bash\nyarn lint:scripts\n```\n\nLint styles\n\n```bash\nyarn lint:styles\n```\n\nLint styles and scripts\n\n```bash\nyarn lint\n```\n\nFix\n\n```bash\nyarn run lint:fix\n```\n\n## Build with environment\n```bash\nyarn release --env example\n```\nRequires a file `.env.example` file in the root folder of the project\nYou can add any files to your environments\n\n# Code generation commands\n\n### Add layout\n```bash\nyarn add-layout --name test-layout\nyarn add-layout --name 'test layout'\n```\n\n#### Optional\n```bash\nyarn add-layout --name test-layout --type class (default)\nyarn add-layout --name test-layout --type function\n```\n\n### Add page\n```bash\nyarn add-page --name test-page\nyarn add-page --name 'test page'\n```\n\n#### Optional\n```bash\nyarn add-page --name test-page --type class (default)\nyarn add-page --name test-page --type function\n```\n\n### Add fragment\n```bash\nyarn add-fragment --name test-fragment\nyarn add-fragment --name 'test fragment'\n```\n\n#### Optional\n```bash\nyarn add-fragment --name test-fragment --type class (default)\nyarn add-fragment --name test-fragment --type function\n```\n\n### Add component\n```bash\nyarn add-component --name test-component\nyarn add-component --name 'test component'\n```\n\n#### Optional\n```bash\nyarn add-component --name test-component --type class (default)\nyarn add-component --name test-component' --type function\n```\n\n## Features\n- [x] Webpack 4\n- [x] TypeScript\n- [x] Styled Components\n- [x] PostCss / scss\n- [x] Svg sprites\n- [x] MobX\n- [x] Tests\n- [x] Code generation\n\n## Get in touch\n- Bugs / Suggestions: [open an issue](https://github.com/lnked/react-starter/issues)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flnked%2Freact-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flnked%2Freact-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flnked%2Freact-starter/lists"}