TypeScript Android

Open-source TypeScript projects categorized as Android

Top 23 TypeScript Android Projects

  1. Appwrite

    Appwrite® - complete cloud infrastructure for your web, mobile and AI apps. Including Auth, Databases, Storage, Functions, Messaging, Hosting, Realtime and more

    Project mention: 25 Trending Self-Hosted Projects on GitHub | dev.to | 2026-04-02
  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. Joplin

    Joplin - the privacy-focused note taking app with sync capabilities for Windows, macOS, Linux, Android and iOS.

    Project mention: Show HN: Files.md – open-source alternative to Obsidian | news.ycombinator.com | 2026-05-18

    What is this providing over similarly Markdown based open source note taking applications like Joplin? (https://joplinapp.org/)

    I've been a huge fan of the fact that my backend sync infrastructure is my own self-hosted S3 bucket with local clients handling the presentation layer.

  4. expo

    An open-source framework for making universal native apps with React. Expo runs on Android, iOS, and the web.

    Project mention: Expo Router v56 Ships SSR and Breaks Free from React Navigation | dev.to | 2026-06-10

    Find us on Discord and GitHub. We want to hear what you build and when something breaks.

  5. NativeScript

    ⚡ Write Native with TypeScript ✨ Best of all worlds (TypeScript, Swift, Objective C, Kotlin, Java, Dart). Use what you love ❤️ Angular, React, Solid, Svelte, Vue with: iOS (UIKit, SwiftUI), Android (View, Jetpack Compose), Flutter and you name it compatible.

    Project mention: Top 10 Frameworks for Hybrid Mobile Apps in 2026 | dev.to | 2025-12-19

    NativeScript is a hybrid mobile app framework that allows developers to build truly native iOS and Android apps using JavaScript, TypeScript, or Angular. Unlike frameworks that rely on WebViews, NativeScript provides direct access to native APIs, ensuring apps perform like native applications. It is ideal for developers who want the convenience of JavaScript while leveraging full native functionality.

  6. appium

    Cross-platform automation framework for all kinds of apps, built on top of the W3C WebDriver protocol

    Project mention: AI-Native Mobile Device Automation: Give Your AI Agent Eyes and Hands on Real Phones | dev.to | 2026-04-09

    Appium, Detox, Espresso, XCTest — these traditional mobile testing frameworks are built for humans writing test scripts. They assume you know the screen hierarchy in advance, that you'll write explicit waits, that you'll maintain page objects. They produce verbose, stateful sessions that burn through an LLM's context window before anything useful happens.

  7. readest

    Readest is a modern, feature-rich ebook reader designed for avid readers offering seamless cross-platform access, powerful tools, and an intuitive interface to elevate your reading experience.

    Project mention: Pocket TTS: A high quality TTS that gives your CPU a voice | news.ycombinator.com | 2026-01-15

    I've moved to https://github.com/readest/readest over audio books in most cases. I just need the dang thing in my ears and their TTS is good enough.

  8. NativeBase

    Mobile-first, accessible components for React Native & Web to build consistent UI across Android, iOS and Web.

  9. react-native-firebase

    🔥 A well-tested feature-rich modular Firebase implementation for React Native. Supports both iOS & Android platforms for all Firebase services.

    Project mention: React Native + Web + Firebase (Part 01) — Why we use React Native to develop both Native and Web version | dev.to | 2025-06-20
  10. graphql-code-generator

    A tool for generating code based on a GraphQL schema and GraphQL operations (query/mutation/subscription), with flexible support for custom plugins.

  11. popcorntime

    Popcorn Time™ puts everything in one place. Your favorite platforms, your shows, your movies-ready when you are.

  12. react-native-calendars

    React Native Calendar Components 🗓️ 📆

  13. devhub

    TweetDeck for GitHub - Filter Issues, Activities & Notifications - Web, Mobile & Desktop with 99% code sharing between them (by devhubapp)

  14. react-native-vision-camera

    📸 A powerful, high-performance React Native Camera library.

    Project mention: React Native ile Endüstriyel Barkod Okuma: Ters Renk Data Matrix Kodları ve Zebra DataWedge Entegrasyonu | dev.to | 2025-12-19

    React Native Vision Camera

  15. berty

    Berty is a secure peer-to-peer messaging app that works with or without internet access, cellular data or trust in the network

    Project mention: Jack Dorsey Releases BitChat: Encrypted Messaging via Bluetooth LE Mesh | news.ycombinator.com | 2025-07-06
  16. outline-apps

    Outline Client and Manager, developed by Jigsaw. Outline Manager makes it easy to create your own VPN server. Outline Client lets you share access to your VPN with anyone in your network, giving them access to the free and open internet.

    Project mention: Ask HN: The government of my country blocked VPN access. What should I use? | news.ycombinator.com | 2025-08-28
  17. react-native-mmkv

    ⚡️ The fastest key/value storage for React Native. ~30x faster than AsyncStorage!

  18. kittenTricks

    React Native starter kit with over 40 screens and modern Light and Dark theme for creating stunning cross-platform mobile applications.

  19. react-native-ui-lib

    UI Components Library for React Native

  20. nativescript-vue

    Native mobile applications using Vue and NativeScript.

  21. react-native-modal

    An enhanced, animated, customizable Modal for React Native.

  22. Bangumi

    :electron: An unofficial https://bgm.tv ui first app client for Android and iOS, built with React Native. 一个无广告、以爱好为驱动、不以盈利为目的、专门做 ACG 的类似豆瓣的追番记录,bgm.tv 第三方客户端。为移动端重新设计,内置大量加强的网页端难以实现的功能,且提供了相当的自定义选项。 目前已适配 iOS / Android。

  23. aya

    Android ADB desktop app (by liriliri)

  24. apk-mitm

    🤖 A CLI application that automatically prepares Android APK files for HTTPS inspection

    Project mention: I hacked my washing machine | news.ycombinator.com | 2025-07-28

    First up: this isn't criticism of the original post in the slightest, it's a wonderful journey through figuring out how a weird device that wants to be on your wifi works.

    If you have a device that speaks to an Android app, you want https://github.com/niklashigi/apk-mitm - it'll strip pretty much every known certificate pinning implementation from an apk, and it'll also rewrite the manifest so it'll trust the user-installed certs without having to root your device to modify the system store. Uninstall the original app, sideload the output of apk-mitm, and then you can use mitmproxy on a stock device.

    The other thing is that if a device is providing encrypted data to an app, and the app is displaying the decrypted data, then the app inherently either contains the decryption key somewhere or downloads it from somewhere. https://github.com/skylot/jadx will turn an apk into something that approximates Java, and digging through that will often let you figure out what the key is. But some vendors will decide that the appropriate way to handle this is to kick the cryptography out to native code, at which point you're into having to RE something in Ghidra. Depending on your mindset this is either incredibly tedious or incredibly fun, but it's generally possible.

    The author was able to build on top of work that had been done by others, but if you're ever faced with a situation where nobody else has done that work, don't just give up. It's worth spending time trying to figure out how code running on a device you own works, and even if you don't succeed in the end you're probably going to learn a lot in the process.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

TypeScript Android discussion

Log in or Post with

TypeScript Android related posts

  • Show HN: Tapflow – self-hosted iOS/Android simulator streaming for mobile QA

    1 project | news.ycombinator.com | 10 Jun 2026
  • What We Actually Did About npm Supply Chain Attacks

    1 project | dev.to | 30 May 2026
  • I love my Bluetooth keyboard

    1 project | news.ycombinator.com | 25 May 2026
  • obsidotion: an Obsidian plugin that syncs your vault to Notion (and back)

    1 project | dev.to | 23 May 2026
  • OpenClaw Creator Spent $1.3M on OpenAI Tokens in 30 Days

    4 projects | news.ycombinator.com | 16 May 2026
  • The text mode lie: why modern TUIs are a nightmare for accessibility

    3 projects | news.ycombinator.com | 3 May 2026
  • Google Just Made MCP Enterprise-Grade at Cloud NEXT '26 - Here's What That Means for Android Developers

    1 project | dev.to | 23 Apr 2026
  • A note from our sponsor - SaaSHub
    www.saashub.com | 10 Jun 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Index

What are some of the best open-source Android projects in TypeScript? This list will help you:

# Project Stars
1 Appwrite 56,217
2 Joplin 55,083
3 expo 49,916
4 NativeScript 25,529
5 appium 21,609
6 readest 21,135
7 NativeBase 20,388
8 react-native-firebase 12,302
9 graphql-code-generator 11,253
10 popcorntime 10,602
11 react-native-calendars 10,286
12 devhub 10,097
13 react-native-vision-camera 9,440
14 berty 9,197
15 outline-apps 9,169
16 react-native-mmkv 8,375
17 kittenTricks 7,264
18 react-native-ui-lib 7,136
19 nativescript-vue 6,431
20 react-native-modal 5,659
21 Bangumi 5,599
22 aya 5,117
23 apk-mitm 4,969

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that TypeScript is
the 2nd most popular programming language
based on number of references?