Prisma replaces traditional ORMs

https://www.prisma.io/ Prisma client simplifies database access. It lets you read and write data to your database using your favorite programming language. Auto-generated & type-safe client library Latest ES7 features (e.g. async/await) Performant database access Simple data modeling & easy migrations Prisma Migrate defines and updates your database schema using the declarative SDL syntax for data …

Angular – dirty and touched

Why check dirty and touched? You may not want your application to display errors before the user has a chance to edit the form. The checks for dirty and touched prevent errors from showing until the user does one of two things: changes the value, turning the control dirty; or blurs the form control element, setting the control to touched. You can …

Flutter is Google’s UI toolkit

Flutter is an open-source mobile application development framework created by Google. It is used to develop applications for Android and iOS, as well as being the primary method of creating applications for Google Fuchsia. Flutter apps are written in the Dart language and make use of many of the language’s more advanced features. On Android, and on Windows, macOS and Linux via the semi-official Flutter Desktop Embedding project, Flutter runs in the …

Simple HTTP Server for static HTML

This will install http server node package globally on your PC. After installation, you can run command http-server This will run your SPA built app in local IPs:127.0.0.1:8080, localhost:8080, 192.168.1.126:8080, 10.2.34.25:8080 So you can access to your APP from local and other PCs as well. Especially, PWA does not work on development environment. For testing …