From a6cc89eaedcc965488e4ac38c6277144fa19086c Mon Sep 17 00:00:00 2001 From: David Westgate Date: Mon, 20 Jan 2025 11:14:59 -0800 Subject: [PATCH] Update README.md with framework and language explanations --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 202262a..30e7a9d 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ -# poker-chips-helper +# Poker Chips Helper A mobile application to assist a poker host with determining the denominations and distributions of poker chips. + +This applications uses the React Native + Expo framework and by extension is primarily implemented in typescript. These frameworks were chosen for their solid reputation, and ability to easily compile to both major platforms (iOS + Android) with a single code base. Typescript is the default language for new projects with these frameworks, but is also preferred over the javascript alternative as strong typings are very helpful to the developer experience.