{"id":16236140,"url":"https://github.com/blopa/my-react-base-project","last_synced_at":"2026-02-15T20:33:06.094Z","repository":{"id":39577306,"uuid":"123632072","full_name":"blopa/my-react-base-project","owner":"blopa","description":null,"archived":false,"fork":false,"pushed_at":"2022-12-07T14:43:41.000Z","size":5756,"stargazers_count":1,"open_issues_count":20,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-11T04:37:59.264Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/blopa.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2018-03-02T21:20:18.000Z","updated_at":"2019-08-17T01:55:06.000Z","dependencies_parsed_at":"2023-01-24T19:03:00.559Z","dependency_job_id":null,"html_url":"https://github.com/blopa/my-react-base-project","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/blopa/my-react-base-project","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fmy-react-base-project","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fmy-react-base-project/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fmy-react-base-project/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fmy-react-base-project/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/blopa","download_url":"https://codeload.github.com/blopa/my-react-base-project/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/blopa%2Fmy-react-base-project/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29488570,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T19:29:10.908Z","status":"ssl_error","status_checked_at":"2026-02-15T19:29:10.419Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2024-10-10T13:29:15.443Z","updated_at":"2026-02-15T20:33:06.058Z","avatar_url":"https://github.com/blopa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# React pages boilerplate\n\n![Cover](cover.png)\nThis boilerplate introduces a simple way for developing serverless React applications, which are perfect for serving from [Github Pages](https://pages.github.com/).\n\n## Technologies\n\n* [Webpack@4](https://webpack.js.org/) as module bundler\n* [Babel](https://babeljs.io/) with [babel-preset-env](https://babeljs.io/docs/plugins/preset-env/) for js and jsx transpiling\n* [react-hot-loader@4](https://github.com/gaearon/react-hot-loader) for extremely fast hot updates\n* [Eslint](http://eslint.org/) and [Stylelint](http://stylelint.io/) for linting\n* [Prettier](https://prettier.io/) for automated code formatting\n* [Jest](https://facebook.github.io/jest/) with [Enzyme](http://airbnb.io/enzyme/) for testing\n* CSS Modules, [Sass](http://sass-lang.com/) and [PostCSS](http://postcss.org/) with [Autoprefixer](https://github.com/postcss/autoprefixer) for styles processing\n* [Storybook](https://storybook.js.org/) for painless UI development and testing\n\n## Preinstalled and configured libraries\n\n* [react@16](https://github.com/facebook/react)\n* [redux](https://github.com/reactjs/redux)\n* [react-router@4](https://github.com/ReactTraining/react-router) with HashRouter (perfectly suits Github Pages environment)\n* [react-redux](https://github.com/reactjs/react-redux)\n* [axios](https://github.com/mzabriskie/axios) with [redux-axios-middleware](https://github.com/svrcekmichal/redux-axios-middleware)\n* [ramda](http://ramdajs.com/) and [lodash](https://lodash.com/) as utility libraries (unused parts will be cut off with babel and webpack plugins)\n* [react-icons](https://gorangajic.github.io/react-icons/)\n\n## Getting started\n\n* Clone `git clone https://github.com/rtivital/react-pages-boilerplate` or [download](https://github.com/rtivital/react-pages-boilerplate/archive/master.zip) this repository.\n* (Optional) Run `nvm use`. This will ensure that you are running the supported version of Node.js. You can nvm installation instructions [here](https://github.com/creationix/nvm).\n* Install dependencies: `npm install`\n* Run the project: `npm start`\n* Remove git folder with `npm run clean:git` (this will remove .git folder attached to react-pages-boilerplate) and follow [these instructions](https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/) to init new Github repository and enable publishing to Gihub Pages.\n\n## npm scripts\n\n* `npm start` – starts development server with webpack-dev-server\n* `npm test` – runs tests with Jest\n* `npm run build` – builds project to production (Note that the result bundle is not suitable for hosting on Github Pages, use `npm run deploy` to build and deploy to Github Pages)\n* `npm run deploy` – builds and deploys project to Github pages\n* `npm run lint` – lints both JavaScript (with `npm run lint:js`) and Sass files (with `npm run lint:scss`)\n* `npm run storybook` – starts storybook server on port 9001\n* `npm run prettier` – format js and jsx files with prettier\n\n## Changelog\n\nSee [releases section](https://github.com/rtivital/react-pages-boilerplate/releases/) to get information about new cool features added to the project.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblopa%2Fmy-react-base-project","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fblopa%2Fmy-react-base-project","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fblopa%2Fmy-react-base-project/lists"}