Btw - the codebase looks neat and very well-maintained !
Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
131–140 of 144 posts
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#132Earlier quoted context omitted.
Looks like they're using Vuex ( https://github.com/vuejs/vuex ) It's a nice library, I've used it for a few projects.
Yeah, I'm not totally happy with my little VueJS application. Lots of components, lots of pubsub..
Turns out its just a plain and simple reactive global store ! And the documentation is simply stellar.
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#133It would be really cool if you can make it a progressive web app.
I am making a pwa built with vuejs and material design. Its a forum software inspired from flarum and google inbox.
Its only 30% done, but its getting there ! - https://github.com/agnivade/adda
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#134Quick question - How are you using firebase for search ? I am building a forum app using vuejs and firebase, and I dont have a elegant solution for search. Btw - the codebase looks neat and very well-maintained !
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#135Quick question - How are you using firebase for search ? I am building a forum app using vuejs and firebase, and I dont have a elegant solution for search. Btw - the codebase looks neat and very well-maintained !
Thanks! Search is currently client-side only ( https://github.com/joshaven/string_score ). This will need to change and I might move everything to Elasticsearch.
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#136Earlier quoted context omitted.
It really is great, I've been using it for years -- and all my notes are stored as plain-text (markdown) files. Only downside is images really. If you want to try it, check out this more-recently-updated fork. The creator of the fork is apparently working on a replacement that I'm rather looking forward to trying. http://brettterpstra.com/projects/nvalt/
Thanks for this. I've been using Notational Velocity for years and often occasionally looked for an update but found none. What's the replacement you mentioned? I didn't see any info on the linked site.
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#137Earlier quoted context omitted.
Thanks for this. I've been using Notational Velocity for years and often occasionally looked for an update but found none. What's the replacement you mentioned? I didn't see any info on the linked site.
Apparently it's going to be called bitwriter (see the bottom of this post http://brettterpstra.com/2016/02/12/marked-2-dot-5-4-updates... ) but there's not much information out there yet.
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#138Earlier quoted context omitted.
Thanks! Search is currently client-side only ( https://github.com/joshaven/string_score ). This will need to change and I might move everything to Elasticsearch.
So are you downloading everything from firebase and then doing the search ?
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#139Earlier quoted context omitted.
What are your favourite libraries/extensions (for want of a better term) to use with it? I'm on my first VueJS 2 project, and found a number which are abandoned...
Vuex ( https://github.com/vuejs/vuex ) and vue-router ( https://github.com/vuejs/vue-router ) are nothing flashy, yet really solid. There are tons more in the awesome-vue repo ( https://github.com/vuejs/awesome-vue ). Even though Vue has less libraries/extensions than something like React, the core: state management, routing, Vue component spec are quite good.
Re: Show HN: Real-time notes app built with Vue.js, inspired by Notational Velocity
#140Vue.js is awesome! I am glad to see so many more people adopting it for serious projects.
I have been required to use Vue.js in a current project (a semi complex app with lots of forms). It's the perfect way for clueless js fanboys to write unmaintainable spaghetti code. It's nothing less than a poorly designed view layer with no kind of architecture or tooling. It's naive and harmful (because of the way it is being marketed). It's a hobby project by someone that think they know what they are doing, but a…