Java React

Open-source Java projects categorized as React

Top 23 Java React Projects

  • react-native

    A framework for building native applications using React

    Project mention: Updating from 0.72.7 to 0.73 | /r/reactnative | 2023-12-09

    Raise minimum Node.js requirement to 18.x (#37709) (see also Node.js 16 EOL).

  • JHipster

    JHipster, much like Spring initializr, is a generator to create a boilerplate backend application, but also with an integrated front end implementation in React, Vue or Angular. In their own words, it "Is a development platform to quickly generate, develop, & deploy modern web applications & microservice architectures."

    Project mention: Deploy Secure Spring Boot Microservices on Amazon EKS Using Terraform and Kubernetes | dev.to | 2023-11-23

    provider "auth0" { domain = "https://" debug = false } # Create a new Auth0 application for the JHipster app resource "auth0_client" "java_ms_client" { name = "JavaMicroservices" description = "Java Microservices Client Created Through Terraform" app_type = "regular_web" callbacks = ["http://localhost:8080/login/oauth2/code/oidc"] allowed_logout_urls = ["http://localhost:8080"] oidc_conformant = true jwt_configuration { alg = "RS256" } } # Configuring client_secret_post as an authentication method. resource "auth0_client_credentials" "java_ms_client_creds" { client_id = auth0_client.java_ms_client.id authentication_method = "client_secret_post" } # Create roles for the JHipster app resource "auth0_role" "admin" { name = "ROLE_ADMIN" description = "Administrator" } resource "auth0_role" "user" { name = "ROLE_USER" description = "User" } # Create an action to customize the authentication flow to add the roles and the username to the access token claims expected by JHipster applications. resource "auth0_action" "jhipster_action" { name = "jhipster_roles_claim" runtime = "node18" deploy = true code = <<-EOT /** * Handler that will be called during the execution of a PostLogin flow. * * @param {Event} event - Details about the user and the context in which they are logging in. * @param {PostLoginAPI} api - Interface whose methods can be used to change the behavior of the login. */ exports.onExecutePostLogin = async (event, api) => { const namespace = 'https://www.jhipster.tech'; if (event.authorization) { api.idToken.setCustomClaim(namespace + '/roles', event.authorization.roles); api.accessToken.setCustomClaim(namespace + '/roles', event.authorization.roles); } }; EOT supported_triggers { id = "post-login" version = "v3" } } # Attach the action to the login flow resource "auth0_trigger_actions" "login_flow" { trigger = "post-login" actions { id = auth0_action.jhipster_action.id display_name = auth0_action.jhipster_action.name } } # Create a test user. You can create more users here if needed resource "auth0_user" "test_user" { connection_name = "Username-Password-Authentication" name = "Jane Doe" email = "[email protected]" email_verified = true password = "passpass$12$12" # Don't set passwords like this in production! Use env variables instead. lifecycle { ignore_changes = [roles] } } resource "auth0_user_roles" "test_user_roles" { user_id = auth0_user.test_user.id roles = [auth0_role.admin.id, auth0_role.user.id] } output "auth0_webapp_client_id" { description = "Auth0 JavaMicroservices Client ID" value = auth0_client.java_ms_client.client_id } output "auth0_webapp_client_secret" { description = "Auth0 JavaMicroservices Client Secret" value = auth0_client_credentials.java_ms_client_creds.client_secret sensitive = true }

  • InfluxDB

    Collect and Analyze Billions of Data Points in Real Time. Manage all types of time series data in a single, purpose-built database. Run at any scale in any environment in the cloud, on-premises, or at the edge.

  • react-native-webrtc

    The WebRTC module for React Native

    Project mention: Trouble connecting on remote connections (React Native) Help required 🙏 | /r/WebRTC | 2023-07-17

    Hi, I am using react-native-webrtc along with react-native-simple-peer for my webrtc video calls. I tried using a custom turn server and twilio's servers as well. All the servers that I am using give IceGatheringState: complete on this website, so I feel that the servers are working fine. I am unable to connect the calls whenever I'm using mobile data or am on different networks and get the error Ice Connection failed. Have tried toggling values for trickle and also tried completely relying on the turn severs by using iceTransportPolicy: 'relay'. Have beat my head for quite some time regarding the solution for this and would appreciate any help, thanks!

  • react-native-share

    Social share, sending simple data to other apps.

  • native-navigation

    Native navigation library for React Native applications

    Project mention: Why do so many places hire "Android Developers" but use React and JS? | /r/androiddev | 2023-04-18

    Honestly, if I were to make a wager for cross-platform tech, if it weren't for Google and its generally capricious nature and how they just can't get devoted to 1 thing for over 3 years, I'd think Flutter is a better bet, as they have their own UI rendering, therefore less potential for bugs that you have to workaround via modules from the outside for each platform.

  • UniversalMediaServer

    A DLNA, UPnP and HTTP(S) Media Server.

    Project mention: UniversalMediaServer – A DLNA, UPnP and HTTP(s) Media Server | news.ycombinator.com | 2023-07-05
  • react-native-geolocation-service

    React native geolocation service for iOS and android

    Project mention: Cant make geolocation work | /r/reactnative | 2023-05-06

    Use this library https://www.npmjs.com/package/react-native-geolocation-service

  • Onboard AI

    Learn any GitHub repo in 59 seconds. Onboard AI learns any GitHub repo in minutes and lets you chat with it to locate functionality, understand different parts, and generate new code. Use it for free at www.getonboard.dev.

  • metasfresh

    We do Open Source ERP - Fast, Flexible & Free Software to scale your Business.

  • Anvil

    Minimal UI library for Android inspired by React

    Project mention: Is Jetpack Compose/Flutter way of building UI really better than xml | /r/androiddev | 2023-03-26

    The closest thing I can think of is either Anvil https://github.com/anvil-ui/anvil

  • react-native-geolocation

    Geolocation APIs for React Native

  • react-native-web-monorepo

    Code sharing between iOS, Android & Web using monorepo

  • jail-monkey

    A React Native library for identifying if a phone is rooted or mocking locations

  • react-native-unity-view

    Show an unity view in react native

  • react-native-perspective-image-cropper

    Perform custom crop, resizing and perspective correction 📐🖼

  • react-native-bars

    Components to control your app status and navigation bars.

  • typescript-react-native-starter

    A highly scalable foundation with a focus on best pratices and simplicity to start your React Native project in seconds.

  • react-native-tracking-transparency

    🕵️ A React Native Library for interacting with the tracking API from iOS 14.

  • react-native-zeroconf

    :satellite: Discover Zeroconf services using react-native

  • react-native-keyevent

    Capture external keyboard keys or remote control button events

    Project mention: usescandetection works in react, need similar approach in react-native | /r/reactnative | 2022-12-29
  • simple-react-native-starter

    Simple ReactNative starter with an opinionated folder structure for mobile development.

  • react-native-hce

    Emulate smart cards inside React-Native application.

  • react-native-typescript-boilerplate

    React Native Typescript Boilerplate, React Native Starter Kits : react-navigation and its dependencies, redux, redux persist and redux thunk, redux toolkit, react native vector icons, react-native async storage (by handi-dev)

  • auth0-full-stack-java-example

    🔥 Full Stack Java Example

  • SaaSHub

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

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). The latest post mention was on 2023-12-09.

Java React related posts

Index

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