{"id":18996202,"url":"https://github.com/arpitgo4/twitch-tv","last_synced_at":"2026-06-23T17:31:23.300Z","repository":{"id":91906202,"uuid":"92170563","full_name":"arpitgo4/Twitch-TV","owner":"arpitgo4","description":"Development Challenge at freeCodeCamp","archived":false,"fork":false,"pushed_at":"2017-05-24T11:49:13.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-21T12:19:39.328Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://twitch-tv-freecodecamp.herokuapp.com/","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/arpitgo4.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-05-23T12:31:10.000Z","updated_at":"2017-05-24T11:43:05.000Z","dependencies_parsed_at":null,"dependency_job_id":"b641c2da-1b86-409e-92f8-edaa435d7b39","html_url":"https://github.com/arpitgo4/Twitch-TV","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/arpitgo4/Twitch-TV","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FTwitch-TV","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FTwitch-TV/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FTwitch-TV/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FTwitch-TV/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arpitgo4","download_url":"https://codeload.github.com/arpitgo4/Twitch-TV/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FTwitch-TV/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34700904,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-23T02:00:07.161Z","response_time":65,"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":"2024-11-08T17:34:19.735Z","updated_at":"2026-06-23T17:31:23.278Z","avatar_url":"https://github.com/arpitgo4.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# React-Redux-Scaffold [![Build Status](https://travis-ci.org/arpitgo4/React-Redux-Scaffold.svg?branch=master)](https://travis-ci.org/arpitgo4/React-Redux-Scaffold)\nClient side scaffold with React-Redux on the frontend and Express server to serve built files in the production mode. Scaffold supports production and development modes, with **Best Developer Experience** ( DX ) by Hot-Loading for the client side application. There will be no need to restart during development, hence making the experience smooth and decrease the delivery time.\n\n## Scaffold Structure \n\n```\n\t.\n\t├── src                     \t#  Frontend source files\n\t|   ├── components          \t#  React component's source\n\t|   ├── config              \t#  Redux store's configuration\n\t|   ├── layouts             \t#  React layout component's source\n\t|   |   └── App.Router.js \t#  React Router    \n\t|   ├── reducers            \t#  Redux reducer's source\n\t|   ├── index.html          \t#  Root HTML template\n\t|   ├── index.js            \t#  Frontend source entry point\n\t|   └── style.scss           \t#  Global Sass stylesheet\n\t├── .babelrc                \t#  Babel configuration ( ES6, React, JSX )\n\t├── .eslintrc               \t#  ESLint configuration\n\t├── .travis.yml \t\t#  Travis CI configuration file\n\t├── devServer.js            \t#  Hot loading server source ( development mode )\n\t├── dist                        #  Compiled files\n\t├── .gitignore                  #  Ignored files from git commit\n\t├── server.js                   #  Express server to serve index.html and other assets\n\t├── LICENSE                     #  License to use the project\n\t├── package.json                #  Frontend and backend dependencies\n\t├── Procfile\t\t\t#  Heroku procfile, for deployment\n\t├── README.md                   #  This file\n\t├── webpack.config.js           #  Webpack configuration for 'production' \n\t└── webpack.dev.config.js \t#  Webpack configuration for 'development' \n```\n\n## Quick Start\n### Just to check everything is working\n```\n# Install the dependencies\nnpm install\n\n# Build the client \nnpm run build:production\n\n# Start the project ( it will build the client, before starting the server )\nnpm start\n\n# Open web browser at http://localhost:8080\n# You will see a sample Single Page Application\n```\n\n## Development\n### Scaffold provides two npm scripts, execute both in seperate terminals\n```\t\n# Start client in development mode with hot code loading,\nnpm run start:development\n```\n\nHit frontend dev server to load application in the browser, enjoy developing :)\n\nRefer to the [react-hot-boilerplate](https://github.com/gaearon/react-hot-boilerplate) for further description.\n## Production\n### Scaffold provides two production scripts\n```\n# Build the client for production deployment\nnpm run build:production\n\n# Build the client for production deployment and start the backend server with 'forever' package\nnpm start \n```\nBackend server will start at http://localhost:8080 or the value provided in PORT environment variable, inside **forever** process and bundled frontend client will be served from the `dist` directory.\n\n## Known Limitations\n* Hot Reloading of the Routes ( Browser refresh is needed! ).\n\n## Feedback\nIn case of any query or feedback, please feel free to connect via\n* arpit.go4@gmail.com (Arpit Goyal)\n\nOr, open an issue at github.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farpitgo4%2Ftwitch-tv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farpitgo4%2Ftwitch-tv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farpitgo4%2Ftwitch-tv/lists"}