A simple Wishlist app made with Quasar Framework!
This app is a PWA. If you access it using Chrome on Android, for example, it may ask you to install it. You can also install it through an option on the bottom left menu. It has offline capabilities as it uses LocalStorage but you can also sign in with Google OAuth to save your wishlist.
You can find the API/back-end repository here.
Feel free to contribute!
- You can press the Enter key to add new items to your list;
- We use sockets, so you can sign in with your account on multiple devices at the same time and they sync, like magic ✨
- The menu option on the bottom left corner is context sensitive, its options change accordingly;
- You can install this PWA through an option on the bottom left corner menu, if applicable;
- Clone this repository by running
git clone https://github.com/yokiharo/wishlist.git
in a folder of your choice; - Run
npm install
oryarn
on the created project folder to install pre-requisites; - Run
quasar dev
to start developing (see Quasar Framework docs for more information!); - Make your changes and create a PR 😃
- Several lists for each user;
- Rewrite API in Go;
- Major cleanup and refactoring;
This app's only purpose is educational - We made it for fun mostly as a way of learning and training Quasar Framework. The app is provided to you as is, considering it is an open-source project and may change over time. If the app performance isn't the best, please keep in mind that every single part of it is being hosted by 100% free services. The app does not store any information from you except in the case of signing in, in which case we store your list items along with your OAuth provider's ID, e.g. Google ID, so you can retrieve them later. The information is stored on a free tier cluster on MongoDB Atlas. In case of offline use instead of signing in, the app only stores information locally in your browser, using Quasar Web Storage (LocalStorage).
We're still learning and as such it's only natural to make mistakes. Let us know if there's something that should be corrected or could be done better. All feedback is welcome!