{"id":23450038,"url":"https://github.com/cloudle/offies-connected-client","last_synced_at":"2025-07-27T17:11:18.460Z","repository":{"id":80944201,"uuid":"49379652","full_name":"cloudle/offies-connected-client","owner":"cloudle","description":null,"archived":false,"fork":false,"pushed_at":"2016-01-10T18:33:03.000Z","size":755,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-08T05:44:57.506Z","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":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/cloudle.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-01-10T18:32:08.000Z","updated_at":"2016-01-10T18:33:05.000Z","dependencies_parsed_at":"2023-03-26T16:20:50.535Z","dependency_job_id":null,"html_url":"https://github.com/cloudle/offies-connected-client","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cloudle/offies-connected-client","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudle%2Foffies-connected-client","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudle%2Foffies-connected-client/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudle%2Foffies-connected-client/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudle%2Foffies-connected-client/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cloudle","download_url":"https://codeload.github.com/cloudle/offies-connected-client/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cloudle%2Foffies-connected-client/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267392562,"owners_count":24079919,"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-07-27T02:00:11.917Z","response_time":82,"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-12-23T23:32:31.380Z","updated_at":"2025-07-27T17:11:18.437Z","avatar_url":"https://github.com/cloudle.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# kickstart-simple by thereactivestack\n\nKickstart a simple project fast!\n\nIf you would like a more sophisticated kickstart with code splitting, see the [kickstart-hugeapp project](https://github.com/thereactivestack/kickstart-hugeapp).\n\nClone this project to start a simple project using Meteor, React.js and Webpack.\n\n1. `git clone https://github.com/thereactivestack/kickstart-simple.git`\n1. `cd kickstart-simple`\n1. `meteor`\n\n# The stack \u0026 features\n- Include the simple todo app example\n- ES6 modules\n- Meteor\n- React.js\n- react-router with server-rendering (you can disable it by editing `server/entry.js`)\n- Webpack (bundle your app / assets and send them to Meteor)\n- Hot-reload with no page refresh in development mode\n- Optimize your code in production mode\n- Give access to NPM by using packages.json\n\n# How does it work?\nWebpack needs one [`webpack.conf.js`](https://github.com/thereactivestack/kickstart-simple/blob/master/entry/client/webpack.conf.js) file for the client and one [`webpack.conf.js`](https://github.com/thereactivestack/kickstart-simple/blob/master/entry/server/webpack.conf.js) for the server. It allows you to have a better control over the build process. Every other files are not automatically included by Meteor. Everything is starting from your entry point. You can also have a [`webpack.conf.js`](https://github.com/thereactivestack/kickstart-simple/blob/master/entry/webpack.conf.js) that is shared between client and server for common settings.\n\nThe server entry point in the project is at [`entry/server/entry.js`](https://github.com/thereactivestack/kickstart-simple/blob/master/entry/server/entry.js). Everything that you want to load on your Meteor server, they have to be imported or required in some way.\n\nThe client entry point in the project is at [`entry/client/entry.js`](https://github.com/thereactivestack/kickstart-simple/blob/master/entry/server/entry.js) and work the same way as on the server, except it is run on the browser or Cordova.\n\nYou can use any package coming from NPM by adding it to [`webpack.packages.json`](https://github.com/thereactivestack/kickstart-simple/blob/master/webpack.packages.json).\n\nGo look at them, they are simple!\n\n# Testing\nIf you would like to activate unit and integration tests, you can add the following packages:\t\t\n\n```sh\t\t\nmeteor add sanjo:jasmine\t\t\nmeteor add velocity:html-reporter\t\t\n```\t\t\n\nAnd uncomment the code in [entry/client/entry.js](https://github.com/thereactivestack/kickstart-simple/blob/master/entry/client/entry.js#L15-L25) and [entry/server/entry.js](https://github.com/thereactivestack/kickstart-simple/blob/master/entry/server/entry.js#L17-L24)\n\n# Production\nYou can use meteor run, meteor build, mup or anything working with Meteor.\n\n## Run in production mode\n`meteor run --production`\n\n## Build for production\n`meteor build .`\n\n## Deploy with Meteor-up\n`mup deploy`\n\n# Cordova\nYou need to do those 3 steps to make it works with iOS or Android:\n\n1. Add the platform to your Meteor project\n\n    ```javascript\n    meteor add-platform ios\n    meteor add-platform android\n    ```\n1. Allow access to your dev server in your `/mobile-config.js` file:\n\n    ```javascript\n    App.accessRule('http://192.168.1.100:3500/*');\n    ```\n\n1. Replace localhost by your local ip address in `/entry/webpack.conf.js`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudle%2Foffies-connected-client","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcloudle%2Foffies-connected-client","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcloudle%2Foffies-connected-client/lists"}