Posts

Showing posts with the label PWA

This Week I Learned - Week #15 2024

Image
This Week I Learned -  *  Anita is a private, no-server, powerful and fully customizable data management solution, open source and free of charge. Anita is a Progressive Web App (PWA). * Progressive Web App (PWA) combines some advantages of traditional web pages, such as easily loading on any platform, with the speed, reliability, and functionality of modern desktop and mobile apps. * The specific code needed to convert a web app to a PWA is often a built-in feature of frameworks and libraries. Angular has a specific package for PWAs (@angular/pwa), and so does Vue (@vue/cli-plugin-pwa) and the same can be achieved with React (for example with create-react-app). * Anita supports SQLite , which means you can save your data in a local database on your device from a Progressive Web App. This is achieved by using the FileSystemAccessAPI, so the user only needs to choose where to keep the database once, and then the PWA can perform all CRUD operations it needs, with some cave...