Tencent / Hippy
- среда, 25 декабря 2019 г. в 00:19:32
C++
Hippy is a cross-platform development framework, introduction video - https://v.qq.com/x/page/i3038urj2mt.html
English | 简体中文
Hippy is a cross-platform development framework, aiming to help developers write once, run on three platforms(iOS, Android and Web). Hippy is quite friendly to web developers, especially who are familar with React or Vue. With Hippy, developers are able to create the cross platform app easily.
Hippy is now applied in 18 Tencent apps concerning tens of billions of ordinary users.
React and Vue.Hippy
├── examples # Demo code for frontend or native developer.
│ ├── hippy-react-demo # hippy-react js demo code.
│ ├── hippy-vue-demo # hippy-vue js demo code.
│ ├── ios-demo # iOS native demo code.
│ └── android-demo # Android native demo code.
├── packages # npm packages.
│ ├── hippy-debug-server # Debug the Hippy with native.
│ ├── hippy-react # React binding for Hippy.
│ ├── hippy-react-web # Web adapter for hippy-react.
│ ├── hippy-vue # Vue binding for Hippy.
│ ├── hippy-vue-css-loader # Webpack loader for convert CSS text to JS AST.
│ ├── hippy-vue-native-components # Native components extensions for hippy-vue.
│ └── hippy-vue-router # Vue router for hippy-vue.
├── ios
│ └── sdk # iOS SDK
├── android
│ ├── support_ui # Android native components.
│ └── sdk # Android SDK.
├── core # JS modules implemented by C++, binding to JS engine.
├── layout # Hippy layout engine.
├── scripts # Project build script.
└── types # Global type definition.
For macOS developers:
homebrew is recommended to install the dependencies.
For Windows developers:
Windows can't run the iOS development environment so far.
For iOS we recommend to use iOS simulator when first try, however, you may change the Xcode configuration to install the app to iPhone if you are a iOS expert.
npm install.npm run build.npm run buildexample -- [hippy-react-demo|hippy-vue-demo].open examples/ios-demo/HippyDemo.xcodeproj.For Android we recommend to use the real cellphone for better experience, because Hippy is using X5 JS engine which can't support x86 simulator, as well as ARM simulator has a low performance.
Before build the android app, please make sure the SDK and NDK is installed, And DO NOT update the build toolchain.
npm install.npm run build.ConEmu with git shell, then build the hippy-react demo with npm run buildexample -- hippy-react-demo, or build the hippy-vue demo with npm run buildexample -- hippy-vue-demo .examples/android-demo with Android Studio.For Windows Developers: Because Hippy example build script is writen with
bash. Here's the ConEmnu with git shell recommended, it is provided the Linux environment for Windows.
If you encought the issue of
No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android, here is the solution.
Developers are welcome to contribute to Tencent's open source, and we will also give them incentives to acknowledge and thank them. Here we provide an official description of Tencent's open source contribution. Specific contribution rules for each project are formulated by the project team. Developers can choose the appropriate project and participate according to the corresponding rules. The Tencent Project Management Committee will report regularly to qualified contributors and awards will be issued by the official contact.
Hippy is Apache-2.0 licensed.