{"id":31846877,"url":"https://github.com/frojd/react-sass-starterkit","last_synced_at":"2025-10-12T09:17:32.234Z","repository":{"id":43622416,"uuid":"71642376","full_name":"Frojd/react-sass-starterkit","owner":"Frojd","description":"A slim webpack starterkit and devserver. Includes react, sass and a small cli for scaffolding components fast.","archived":false,"fork":false,"pushed_at":"2023-04-17T15:16:15.000Z","size":2414,"stargazers_count":9,"open_issues_count":10,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-04-15T02:44:28.376Z","etag":null,"topics":[],"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/Frojd.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":"2016-10-22T13:56:06.000Z","updated_at":"2023-05-24T18:36:05.000Z","dependencies_parsed_at":"2022-09-02T13:22:44.518Z","dependency_job_id":null,"html_url":"https://github.com/Frojd/react-sass-starterkit","commit_stats":null,"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"purl":"pkg:github/Frojd/react-sass-starterkit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frojd%2Freact-sass-starterkit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frojd%2Freact-sass-starterkit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frojd%2Freact-sass-starterkit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frojd%2Freact-sass-starterkit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Frojd","download_url":"https://codeload.github.com/Frojd/react-sass-starterkit/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Frojd%2Freact-sass-starterkit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279010964,"owners_count":26084837,"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","status":"online","status_checked_at":"2025-10-12T02:00:06.719Z","response_time":53,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2025-10-12T09:17:31.228Z","updated_at":"2025-10-12T09:17:32.225Z","avatar_url":"https://github.com/Frojd.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React sass starterkit #\r\n\r\nThis is an opinionated frontend development kit.\r\nIt includes a small scaffolder for react components and is exporting a bundle with a global variable named Components\r\n\r\n## Installation ##\r\n\r\n1. npm install\r\n2. npm run scaffold\r\n3. npm start\r\n\r\nThis will create a base set of containers and components in the app folder that you can work with and start the devserver at [http://localhost:7000](http://localhost:7000).\r\n\r\nAlternativly you can use storybook instead for developing by running:\r\n\r\n`npm run storybook`\r\n\r\n\r\n## CLI commands ##\r\n\r\n### Devserver ###\r\n\r\nStart the devserver:\r\n```\r\nnpm start\r\n```\r\n\r\nStart the devserver with a different port:\r\n```\r\nnpm start -- --port 7777\r\n```\r\n\r\nStart the devserver as a hot proxy:\r\n```\r\nnpm start -- --proxy http://proxydomain.com\r\n```\r\n\r\n### Creation commands ###\r\n\r\nCreate a new component:\r\n```\r\nnpm run new ComponentName\r\n```\r\n\r\nCreate a container component:\r\n```\r\nnpm run new ComponentName -- -c\r\n```\r\n\r\nDelete a component:\r\n```\r\nnpm run delete ComponentName\r\n```\r\n\r\nDelete a container component:\r\n```\r\nnpm run delete ComponentName -- c\r\n```\r\n\r\nRun tests:\r\n```\r\nnpm test\r\n```\r\n\r\nUpdate test snapshots (if added):\r\n```\r\nnpm test -- -u\r\n```\r\n\r\nScaffold an example project:\r\n```\r\nnpm run scaffold\r\n```\r\n\r\nScaffold an empty project:\r\n```\r\nnpm run scaffold -- -e\r\n```\r\n\r\nCode formatting via prettier:\r\n```\r\nnpm run fixcode\r\n```\r\n\r\nTo only test that all files are formated correct:\r\n```\r\nnpm run fixcode:test\r\n```\r\n\r\nCodechecking via eslint:\r\n```\r\nnpm run eslint\r\n```\r\n\r\nAutofix via eslint:\r\n```\r\nnpm run eslint:fix\r\n```\r\n\r\n### Additional commands and troubleshooting ###\r\n\r\nTo run webpack analyzer to check your bundle and packagesizes you can append --analyze to a command\r\n```\r\nnpm start -- --analyze\r\nnpm run build -- --analyze\r\nnpm run build:prod -- --analyze\r\n```\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrojd%2Freact-sass-starterkit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffrojd%2Freact-sass-starterkit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffrojd%2Freact-sass-starterkit/lists"}