{"id":13669042,"url":"https://github.com/BelinChung/HiApp","last_synced_at":"2025-04-27T01:32:23.814Z","repository":{"id":18256691,"uuid":"21412951","full_name":"BelinChung/HiApp","owner":"BelinChung","description":"A simple and interesting hybrid app. React Native version: http://t.cn/R5LqqLz Demo: ","archived":false,"fork":false,"pushed_at":"2023-01-03T15:18:21.000Z","size":2975,"stargazers_count":781,"open_issues_count":29,"forks_count":265,"subscribers_count":60,"default_branch":"master","last_synced_at":"2025-04-12T21:37:28.266Z","etag":null,"topics":["cordova","framework7","hybrid-apps","phonegap","vuejs"],"latest_commit_sha":null,"homepage":"https://hi.belinchung.com/","language":"Vue","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/BelinChung.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-07-02T05:50:42.000Z","updated_at":"2025-03-19T11:27:45.000Z","dependencies_parsed_at":"2023-01-13T19:44:41.708Z","dependency_job_id":null,"html_url":"https://github.com/BelinChung/HiApp","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BelinChung%2FHiApp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BelinChung%2FHiApp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BelinChung%2FHiApp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BelinChung%2FHiApp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BelinChung","download_url":"https://codeload.github.com/BelinChung/HiApp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251077102,"owners_count":21532607,"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":["cordova","framework7","hybrid-apps","phonegap","vuejs"],"created_at":"2024-08-02T08:00:59.325Z","updated_at":"2025-04-27T01:32:18.800Z","avatar_url":"https://github.com/BelinChung.png","language":"Vue","readme":"HiApp\n=====\n\nA simple and interesting Framework7 hybrid app.With Cordova you can easily convert it to native iOS app.\n\n## React Native\n\nHiApp is also written in React Native. [BelinChung/react-native-hiapp](https://github.com/BelinChung/react-native-hiapp)\n\nUnlike Cordova, React Native provides bindings for native UI controls which totally outclass HTML-based hybrid solutions. so it is simple to write high-performance UI by React Native. \n\n## Build Tools\n\nHiApp use different build tools to build the same project, Hope it will helps you select a suitable build tool.\n\n* `f7-vue-webpack` at origin/master\n* `f7-webpack` at [origin/f7-webpack](https://github.com/BelinChung/HiApp/tree/f7-webpack)\n* `fis3` at [origin/fis3](https://github.com/BelinChung/HiApp/tree/fis3)\n\n## Requirements\n\n* cordova `^9.0.0`\n* framework7 `^4.5.0`\n* framework7-vue `^4.5.0`\n\nTo build and run apps, you need to install SDKs for each platform you wish to target.  \nTo check if you satisfy requirements for building the platform:\n\n``` bash\n$ cordova requirements\n\nRequirements check results for ios:\nApple macOS: installed darwin\nXcode: installed 10.3\nios-deploy: installed 1.9.4\nCocoaPods: installed 1.7.5\n\n```\n\n## Dependencies\n\nHiApp use `npm` to manage third-party packages now.\n\nThen install all dependencies, in repo's root:\n\n```\n$ npm install \n```\n\n## Cordova App Guides\n\nInstall the cordova as globally.\n\n```\n$ npm install cordova -g\n```\n\n### 1. Create App\n\nGo to the directory where you maintain your source code, and run a command such as the following:\n\n```\n$ cordova create hiapp com.hiapp.hiapp HiApp\n```\n\n### 2. Check out source code\n\nBecause the Cordova app directory should not already exist, so check out the HiApp source code in this step.\n\n```\n$ cd hiapp  \n$ git init   \n$ git remote add origin https://github.com/BelinChung/HiApp.git  \n$ git fetch  \n$ git reset --hard origin/master  \n```\n\n### 3. Add Platforms\n\nBefore you can build the project, you need to specify a set of target platforms.\n\n```\n$ cordova platform add ios --save\n```\n\n### 4. Add Plugins\n\nYou need to add plugins that provide access to core Cordova APIs.\n\n```\n$ cordova plugin add cordova-plugin-whitelist cordova-plugin-statusbar cordova-plugin-camera cordova-plugin-geolocation cordova-plugin-file-transfer cordova-plugin-inappbrowser cordova-plugin-network-information\n```\n\n### 5. Build the App\n\nRun the following command to iteratively build the project:\n\n```\n$ npm run build\n$ cordova build ios\n```\n\n### 6. Test the App on an iOS Device with Xcode\n\n* Using the command\n\n```\n$ cordova run ios\n```\n\n* Using the Xcode\n\nDouble-click to open the `platforms/ios/HiApp.xcodeproj` file\n\nPress the `Run` button to deploy the application in the emulator or iOS device\n\n## Web App Guides\n\n### 1. Preview\n\nHiApp use webpack browser sync server to develop, Just run it in repo's root:\n\n```\n$ npm run serve\n```\n\nWeb app will be available on `http://localhost:3000/`\n\n### 2. Release\n\n```\n$ npm run build\n```\n\nThe result is available in `www/` folder.\n\n## Demo\n\n[https://hi.dearb.me/]\n\n## License\n\nCopyright (c) 2016 - 2019 Belin Chung. MIT Licensed, see [LICENSE] for details.\n\n[https://hi.dearb.me/]: https://hi.dearb.me/\n[LICENSE]:https://github.com/BelinChung/HiApp/blob/master/LICENSE.md","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FBelinChung%2FHiApp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FBelinChung%2FHiApp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FBelinChung%2FHiApp/lists"}