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 …
Using Google News
There is no Google News API in the world. 😉 Instead of it, you should use Google News RSS. For example, https://news.google.com/rss/search?q=ronaldo+messi The result is XML doc, so you should parse it.
Testing sends email free!!!
https://www.pilotmail.io You can send your email templates via this service to any testing emails free. The free plan is 100 emails per month.
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 …
Process DOM String – Cheerio
Fast, flexible & lean implementation of core jQuery designed specifically for the server.
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 …
Hover – double click issue on iPhone
When you use hover CSS event style, it won’t work on iphone. In this case, you will need to double click buttons applied hover CSS event style. Normally, button should work by one click. So it looks like issue. To prevent double click for issue, we need to remove hover event style for buttons. Try …