Select category
Engineering
Formula Parser in JavaScript/Vue/React
This work is the continuation/rethink of this great article written by Andrew Stevens. It’s based on the source code of CodeMirror and Marked.JS. We are going to implement formula parser which supports mathematical operators, bracers, functions, comparisons, and…
Nuxt3/Nest/GraphQL authentication from scratch
We are building full-stack Nuxt.JS/Nest.JS/GraphQL application with authentication, http-only cookies, validation and permissions. 0. The Stack BackendNest.js (The most advanced Node.js framework + DTO and class-validator)Prisma (TypeScript ORM, MySQL is in use)GraphQL (We…
Better Vue performance with Selective Object Reuse
Excessive component rendering is one of the reasons why the vue application can perform slow. In this article we review how to detect rendering, why it happens and how to fix the most…
How to Make Better Vue Component Props?
Component is the core concept of the entire vue.js ecosystem. A better understanding of how the props are passed down and when the component rendering happens helps build a performing system. In this…
We put a lot of effort into the Vue.js front-end performance optimization. In this article, we share some of the beginner vue performance tips and guidelines that can be used in any vue2/vue3…