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 familiar with React or Vue. With Hippy, developers are able to create the cross platform app easily.
Hippy is now applied in 27 Tencent apps such as Mobile QQ, Mobile QQ Browser, Tencent Video App, QQ Music App,reaching hundreds of millions of ordinary users.
- Design for web developers, officially support web frameworks like
React
andVue
. - Same APIs for different platforms.
- Excellent performance with JS engine binding communication.
- Build-in recyclable component with better performance.
- Smoothly and gracefully migrate to web browser.
- Fully supported Flex Layout engine.
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:
- Xcode with iOS sdk: build the iOS app.
- Android Studio with NDK: build the android app.
- Node.JS: run the build scripts.
homebrew is recommended to install the dependencies.
For Windows developers:
- Android Studio with NDK: build the android app.
- Node.JS: run the build scripts.
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 an iOS expert.
- Install the dependencies with
npm install
. - Install dependencies of each npm package with
lerna bootstrap
. - Build the front-end sdk packages at root directory with
npm run build
. - Choose a demo to build with
npm run buildexample -- [hippy-react-demo|hippy-vue-demo]
. - Start the Xcode and build the iOS app with
open examples/ios-demo/HippyDemo.xcodeproj
. cd
toexamples
hippy-react-demo or hippy-vue-demo, runnpm run hippy:dev
andnpm run hippy:debug
respectively to start the live debug mode
On example debug mode, npm packages such as @hippy/react, @hippy/vue are linked to packages
> [different package]
>dist
, so if you have changed package source code and make it take effect in examples, please call npm run build
at root directory again.
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.
- Install the dependencies with
npm install
. - Install dependencies of each npm package with
lerna bootstrap
. - Build the front-end sdk packages at root directory with
npm run build
. - Open a terminal, then build the hippy-react demo with
npm run buildexample -- hippy-react-demo
, or build the hippy-vue demo withnpm run buildexample -- hippy-vue-demo
. - Open the
examples/android-demo
with Android Studio. - Connect android phone with USB cable and make sure USB debugging mode and USB installation are enabled.
- Open the project with Android Studio, run and install the apk.
cd
to hippy-react-demo or hippy-vue-demo, runnpm run hippy:dev
andnpm run hippy:debug
respectively to start the live debug mode.
On example debug mode, npm packages such as @hippy/react, @hippy/vue are linked to packages
> [different package]
>dist
, so if you have changed package source code and make it take effect in examples, please call npm run build
at root directory again.
If you encounter 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.