{"id":21708266,"url":"https://github.com/epilande/yaris","last_synced_at":"2025-07-20T08:06:37.544Z","repository":{"id":85574500,"uuid":"63300390","full_name":"epilande/yaris","owner":"epilande","description":":rocket: Yet Another React Isomorphic Starter","archived":false,"fork":false,"pushed_at":"2018-10-25T21:03:12.000Z","size":1817,"stargazers_count":6,"open_issues_count":27,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-27T13:51:47.117Z","etag":null,"topics":["boilerplate","code-splitting","isomorphic","react","redux","server-side-rendering","styled-components","universal","webpack"],"latest_commit_sha":null,"homepage":"https://yaris-selhchnzyh.now.sh/todo","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/epilande.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-07-14T03:51:56.000Z","updated_at":"2023-02-28T10:03:21.000Z","dependencies_parsed_at":"2023-07-01T23:15:58.286Z","dependency_job_id":null,"html_url":"https://github.com/epilande/yaris","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/epilande/yaris","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epilande%2Fyaris","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epilande%2Fyaris/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epilande%2Fyaris/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epilande%2Fyaris/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/epilande","download_url":"https://codeload.github.com/epilande/yaris/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/epilande%2Fyaris/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266087790,"owners_count":23874519,"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":["boilerplate","code-splitting","isomorphic","react","redux","server-side-rendering","styled-components","universal","webpack"],"created_at":"2024-11-25T22:22:30.409Z","updated_at":"2025-07-20T08:06:37.518Z","avatar_url":"https://github.com/epilande.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YARIS\n**Yet Another React ~~Isomorphic~~ Universal Starter**\n\n[![Build Status](https://travis-ci.org/epilande/yaris.svg?branch=master)](https://travis-ci.org/epilande/yaris)\n[![codecov](https://codecov.io/gh/epilande/yaris/branch/master/graph/badge.svg)](https://codecov.io/gh/epilande/yaris)\n[![Greenkeeper badge](https://badges.greenkeeper.io/epilande/yaris.svg)](https://greenkeeper.io/)\n[![dependencies Status](https://david-dm.org/epilande/yaris/status.svg)](https://david-dm.org/epilande/yaris)\n\nIf you don't want Universal JavaScript, check out my other boilerplate **[YARS](https://github.com/epilande/yars)**.\n\n\n## Features\n- [X] Server-Side Rendering\n- [X] Webpack v2\n- [X] React\n- [X] React HMR\n- [X] React Redux\n- [X] React Router (async routes)\n- [X] React storybook\n- [X] Babel\n- [X] Styled-components\n- [X] Jest and Enzyme\n- [X] ESLint\n- [X] Stylelint\n- [X] NPM Scripts\n\n\n## Quick Start\n\n#### Clone this repo\n\n```bash\n$ git clone https://github.com/epilande/yaris.git\n$ cd yaris\n```\n\n#### Install dependencies\n\n```bash\n$ npm install # or yarn\n```\n\n#### Launch dev environment\n\n```bash\n$ npm run dev\n```\n\n\n## Available Commands\n|`npm run \u003cscript\u003e`|Description|\n|------------------|-----------|\n|`dev`|Starts app on `localhost:3000` in development mode with HMR enabled.|\n|`start`|Starts `./public/server.js`, which has production bundles.|\n|`build`|Runs `build:prod` \u0026 `build:server` to create production bundles.|\n|`build:prod`|Creates **client** bundle with production environment.|\n|`build:server`|Creates **server** bundle with production environment.|\n|`lint`|Lints `./src/**/*.js` \u0026 `./server/**/*.js` with eslint \u0026 stylelint.|\n|`test`|Runs unit tests with Jest \u0026 generates coverage report.|\n|`test:watch`|Same as `npm run test`, but watches for changes to re-run tests.|\n|`storybook`|Starts `react-storybook` on `localhost:9001`.|\n\n\n## Structure\n**Feature-first** approach, all of the related files are in one place.\n\n```\nsrc/\n├── components/                  // Shared or generic UI components\n│   ├── A/\n│   ├── Button/\n│   │   ├── test/\n│   │   │   ├── index.test.js    // Tests for component\n│   │   ├── index.js             // The actual Button component\n│   │   ├── index.stories.js     // This gets picked up by react-storybook\n│   ├── Footer/\n│   └── ...\n├── containers/\n│   └── FeaturePage/\n│      ├── components/           // All FeaturePage specific components live here\n│      │   ├── List/\n│      │   ├── ListItem/\n│      │   ├── ListItemTitle/\n│      │   │  └── index.js\n│      │   └── ...\n│      ├── actions.js\n│      ├── constants.js\n│      ├── index.js\n│      ├── reducer.js\n│      └── ...\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepilande%2Fyaris","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fepilande%2Fyaris","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fepilande%2Fyaris/lists"}