Description
Codegeneration tool for isomorphic server and mobile Go apps backed by gRPC & Protobuf. Share code between your backend, Android & iOS app!
Anakin alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view Anakin alternatives based on common mentions on social networks and blogs.
-
SwiftGen
The Swift code generator for your assets, storyboards, Localizable.strings, … — Get rid of all String-based APIs! -
Lona
A tool for defining design systems and using them to generate cross-platform UI code, Sketch files, and other artifacts. -
Xcodes.app
The easiest way to install and switch between multiple versions of Xcode - with a mouse click. -
FBSimulatorControl
idb is a flexible command line interface for automating iOS simulators and devices -
GDPerformanceView-Swift
Shows FPS, CPU and memory usage, device model, app and iOS versions above the status bar and report FPS, CPU and memory usage via delegate. -
AppDevKit
AppDevKit is an iOS development library that provides developers with useful features to fulfill their everyday iOS app development needs. -
iSimulator
iSimulator is a GUI utility to control the Simulator, and manage the app installed on the simulator. -
Blade
Better asset workflow for iOS developers. Generate Xcode image catalogs for iOS / OSX app icons, universal images, and more. -
Realm Browser
DISCONTINUED. DEPRECATED - Realm Browser for Mac OS X has been replaced by realm-studio which is cross platform. -
Cookiecutter
DISCONTINUED. A template for new Swift iOS / macOS / tvOS / watchOS Framework project ready with travis-ci, cocoapods, Carthage, SwiftPM and a Readme file -
SuperDelegate
DISCONTINUED. SuperDelegate provides a clean application delegate interface and protects you from bugs in the application lifecycle -
abandoned-strings
Command line program that detects unused resource strings in an iOS or OS X application. -
AVXCAssets-Generator
AVXCAssets Generator takes path for your assets images and creates appiconset and imageset for you in just one click
InfluxDB - Purpose built for real-time analytics at any scale.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Anakin or a related project?
README
Anakin
Codegeneration tool for isomorphic server and mobile Go apps with gRPC & Protobuf. Share code between your backend, Android & iOS app!
Description
Anakin takes care about some routine tasks and helps to create shared code between client (mobile apps) & server app written in Go and backed by gRPC & Protobuf. So, how it works?
At the first stage, it just generates from your *.proto
(with defined service, RPC-calls & allowed messages) main gRPC-file *.pb.go
which may be used by any Go app. It uses protoc
utility.
Next Anakin parses *.proto
-file to extract RPC-methods and messages, takes templates for client and server & generates similar Go code. After that it builds binaries for Android (*.aar
) and iOS (*.framework
) using gomobile
.
Mobile binaries build stage may fail by different reasons and you may want to go back again later when environment will be ready. Also you can ignore build stage if you want to make some changes in generated code. Anyway Anakin has another anakin-build
script inside for this purpose, which automatically copied for generated $YOUR_OUTPUT/client
directory with other source files when you run original anakin
script.
Required
Go 1.5 and higher.
Xcode Command Line Tools (Mac OS X only, will be installed if needed).
Android SDK (if Android build is needed).
Usage
anakin -P myrpc.proto [-O output_dir] [-h localhost] [-p 50051] [-android] [-ios]
Flags:
-P | --proto <proto>
(required) path to *.proto
-file
-O | --output <output>
(optional) path to output directory, default: /gen
-h | --host <host>
(optional) server host, default: localhost
-p | --port <port>
(optional) server port, default: 50051
-android
(optional) is Android build needed, default: false
-ios
(optional) is iOS build needed, default: false
anakin-build [--android 1] [--ios 1]
Flags:
--android 1
(optional) is Android build needed, default: 1 (true)
--ios 1
(optional) is iOS build needed, default: 1 (true)
Author
Kirill Biakov
License
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
*Note that all licence references and agreements mentioned in the Anakin README section above
are relevant to that project's source code only.