{"id":18996193,"url":"https://github.com/arpitgo4/vr-panoramas","last_synced_at":"2026-04-10T15:10:49.474Z","repository":{"id":91906214,"uuid":"107386619","full_name":"arpitgo4/VR-Panoramas","owner":"arpitgo4","description":"A gallery of 360° images which on clicking would change the VR Panorama which is being displayed.","archived":false,"fork":false,"pushed_at":"2017-10-20T05:09:02.000Z","size":224,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-20T14:40:09.164Z","etag":null,"topics":["aframe","babel-es6","react","react-redux","react-router","redux","redux-thunk","vr","vr-panoramas","webpack2"],"latest_commit_sha":null,"homepage":null,"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-10-18T09:27:17.000Z","updated_at":"2018-03-15T07:51:00.000Z","dependencies_parsed_at":null,"dependency_job_id":"52627ba6-3993-4851-ac47-72968a478e57","html_url":"https://github.com/arpitgo4/VR-Panoramas","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/arpitgo4/VR-Panoramas","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FVR-Panoramas","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FVR-Panoramas/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FVR-Panoramas/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FVR-Panoramas/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arpitgo4","download_url":"https://codeload.github.com/arpitgo4/VR-Panoramas/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arpitgo4%2FVR-Panoramas/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28133050,"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-12-30T02:00:05.476Z","response_time":64,"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":["aframe","babel-es6","react","react-redux","react-router","redux","redux-thunk","vr","vr-panoramas","webpack2"],"created_at":"2024-11-08T17:34:16.667Z","updated_at":"2025-12-30T22:07:01.695Z","avatar_url":"https://github.com/arpitgo4.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# VR Panorama [![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## Project 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├── postcss.config.js \t\t#  PostCSS configuration\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%2Fvr-panoramas","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farpitgo4%2Fvr-panoramas","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farpitgo4%2Fvr-panoramas/lists"}