# kraken **Repository Path**: gezi18/kraken ## Basic Information - **Project Name**: kraken - **Description**: A high-performance, web standards-compliant rendering engine based on Flutter. - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: chore/migrate_android_jsc - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-29 - **Last Updated**: 2021-06-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![kraken Post](https://user-images.githubusercontent.com/677114/101163298-6264ae80-366e-11eb-9151-f560d18c2ceb.png) # Kraken [![pub package](https://img.shields.io/pub/v/kraken.svg)](https://pub.dev/packages/kraken) [![Integration Test WorkFlow](https://github.com/openkraken/kraken/actions/workflows/integration_test.yml/badge.svg?branch=main)](https://github.com/openkraken/kraken/actions/workflows/integration_test.yml) ## 💁 Have a try 1. Install Kraken CLI (macOS only currently) ```shell $ npm i @openkraken/cli -g ``` 2. Open with kraken ```shell # kraken [localfile|URL] $ kraken https://raw.githubusercontent.com/openkraken/kraken/master/kraken/example/assets/bundle.js ``` ## 💌 Why kraken * Quick development 🎉 Compatibility with web standards means you don't have to change your stack. ```js const text = document.createTextNode('Hello World!'); document.body.appendChild(text); ``` * Cross platform ⚛️ [Seamless integration with Flutter](https://pub.dev/packages/kraken), supports web, mobile (iOS, Android) and desktop (MacOS, Linux, Windows). * Fast performance 🚀 Provide native-like performance such as navigation, animation and infinite list scrolling. ## 👏 Contributing By contributing to Kraken, you agree that your contributions will be licensed under its Apache-2.0 License. 0. Prerequisites * [Node.js](https://nodejs.org/) v12.0 or later * [Flutter](https://flutter.dev/docs/get-started/install) version in the `kraken/pubspec.yaml` * [CMake](https://cmake.org/) v3.2.0 or later * [Xcode](https://developer.apple.com/xcode/) (10.12) or later (Running on macOS or iOS) * [Android NDK](https://developer.android.com/studio/projects/install-ndk) version `20.0.5594570` or later (Running on Android) 1. Install ```shell $ npm install ``` 2. Building bridge Building bridge for all supported platform (macOS, iOS, Android) ```shell $ npm run build:bridge:all ``` Building bridge for one platform **macOS** ```shell $ npm run build:bridge:macos ``` **iOS** ```shell $ npm run build:bridge:ios ``` **Android** > For Windows users, make sure that running this command under MINGW64 environment(eg. Git Bash). ```shell $ npm run build:bridge:android ``` 3. Start example ```shell $ cd kraken/example $ flutter run ``` 4. Test (Unit Test and Integration Test) ```shell $ npm test ```