There are many notes apps, but I needed something simple that works for me on my laptop.
That is why I made minimal notes that will work in my browser locally.
Everything is stored in your web browser localStorage. All the coding is done with Vue.js and the best part is everything is in the index.html file that is only 4Kb.
I also made Minimal Notes.app for Mac OS users. First I used Electron to package the app. But the file from 4Kb became 400 Mb, with some optimization I achieved around 140 Mb but I was not happy. Then I tried Cordova for Mac and worked perfectly. Now the file is 0.45 Mb that is much better then 140 Mb.
Demo:
https://vladocar.github.io/Minimal-Notes/
The project on github:
https://github.com/vladocar/Minimal-Notes
Top comments (5)
Looks pretty good. However for such eady and small stuff personally I would never resort using Vue/React or god forbid Angular.
Vanilla JS would have done the job pretty well and and probably even faster.
True :) Using Vue/React for small project is probably overkill. That is why I created small JS library for "To-Do" projects github.com/vladocar/ramd.js
Great work, and welcome!
Why you would use wrappers, when pwa does the same thing - and for all OSes with decent browser?!
Yes, PWA is solid option two.