chore: update roadmap content json (#7521)

Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com>
master
github-actions[bot] 7 hours ago committed by GitHub
parent e1a56af631
commit f059d34e1f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      public/roadmap-content/blockchain.json
  2. 5
      public/roadmap-content/nodejs.json
  3. 284
      public/roadmap-content/vue.json

@ -467,7 +467,7 @@
"links": [
{
"title": "What is Ethereum Virtual Machine?",
"url": "https://moralis.io/evm-explained-what-is-ethereum-virtual-machine/",
"url": "https://astrodev.hashnode.dev/blockchain-ethereum-evm",
"type": "article"
},
{

@ -532,6 +532,11 @@
"title": "Async Errors",
"url": "https://www.mariokandut.com/handling-errors-in-asynchronous-functions-node-js/",
"type": "article"
},
{
"title": "The best way to handle errors in asynchronous javascript",
"url": "https://dev.to/m__mdy__m/the-best-way-to-handle-errors-in-asynchronous-javascript-16bb",
"type": "article"
}
]
},

@ -17,8 +17,13 @@
},
"y9ToYDix-koRbR6FLydFw": {
"title": "create-vue",
"description": "[create-vue](https://github.com/vuejs/create-vue) is a CLI tool that helps you create a new Vue project with a single command. It is a simple and easy-to-use tool that saves you time and effort when setting up a new Vue project.\n\nLearn more using the following resources:",
"description": "create-vue is a CLI tool that helps you create a new Vue project with a single command. It is a simple and easy-to-use tool that saves you time and effort when setting up a new Vue project.\n\nLearn more using the following resources:",
"links": [
{
"title": "vuejs/create-vue",
"url": "https://github.com/vuejs/create-vue",
"type": "opensource"
},
{
"title": "Creating a Vue Project",
"url": "https://cli.vuejs.org/guide/creating-a-project.html",
@ -120,12 +125,17 @@
},
"CGdw3PqLRb9OqFU5SqmE1": {
"title": "Directives",
"description": "Directives are special attributes with the `v-` prefix. Vue provides a number of [built-in directives](https://vuejs.org/api/built-in-directives.html).\n\nVisit the following resources to learn more:",
"description": "Directives are special attributes with the `v-` prefix. Vue provides a number of built-in directives.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Directives Documentation",
"url": "https://vuejs.org/guide/essentials/template-syntax.html#directives",
"type": "article"
},
{
"title": "Built-in Directives",
"url": "https://vuejs.org/api/built-in-directives.html",
"type": "article"
}
]
},
@ -142,7 +152,7 @@
},
"PPUU3Rb73aCpT4zcyvlJE": {
"title": "Options API",
"description": "We use Options API in a Vue application to write and define different components. With this API, we can use options such as data, methods, and mounted.\n\nTo state it simply, Options API is an old way to structure a Vue.JS application. Due to some limitations in this API, Composition API was introduced in Vue 3.\n\nVisit the following resources to learn more:",
"description": "We use Options API in a Vue application to write and define different components. With this API, we can use options such as data, methods, and mounted. To state it simply, Options API is an old way to structure a Vue.JS application. Due to some limitations in this API, Composition API was introduced in Vue 3.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "TypeScript with Options API",
@ -192,14 +202,9 @@
"description": "Every application instance exposes a `config` object that contains the configuration settings for that application. You can modify its properties before mounting your application.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Documentation",
"title": "Vue.js Documentation",
"url": "https://vuejs.org/api/application.html#app-config",
"type": "article"
},
{
"title": "official API Documentation",
"url": "https://vuejs.org/api/application.html",
"type": "article"
}
]
},
@ -216,13 +221,25 @@
},
"1oIt_5OK-t2WaCgaYt9A8": {
"title": "Error / Warn Handler",
"description": "",
"links": []
"description": "Debugging in Vue.js involves identifying and fixing issues in your Vue applications. It’s an essential part of the development process, and there are several tools and techniques you can use to effectively debug your Vue code.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Debugging Documentation",
"url": "https://vuejs.org/v2/cookbook/debugging-in-vscode.html",
"type": "article"
}
]
},
"gihxGgt177BK_EYsAfpx9": {
"title": "Global Properties",
"description": "",
"links": []
"description": "Global properties allows you to add properties or methods that can be accessed throughout your application. This is particularly useful for sharing functionality or data across components without the need to pass props explicitly.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Vue.js Global Properties",
"url": "https://blog.logrocket.com/vue-js-globalproperties/",
"type": "article"
}
]
},
"f7N4pAp_jBlT8_8owAcbG": {
"title": "Performance",
@ -242,10 +259,10 @@
},
"NCIzs3jbQTv1xXhAaGfZN": {
"title": "v-text",
"description": "The `v-text` directive is used to set the textContent property of an element. It's important to note that when using this directive it will overwrite the HTML content inside the element. The expected input is a string, so it's important to wrap any text in single quotes.\n\nExample:\n\n <template>\n <p v-text=\"'I am some text'\"></p>\n </template>\n \n\nVisit the following resources to learn more:",
"description": "The `v-text` directive is used to set the textContent property of an element. It's important to note that when using this directive it will overwrite the HTML content inside the element. The expected input is a string, so it's important to wrap any text in single quotes.\n\nExample\n-------\n\n <template>\n <p v-text=\"'I am some text'\"></p>\n </template>\n \n\nVisit the following resources to learn more:",
"links": [
{
"title": "v-text documentation",
"title": "v-text Documentation",
"url": "https://vuejs.org/api/built-in-directives.html#v-text",
"type": "article"
}
@ -253,10 +270,10 @@
},
"bZxtIBeIfeUcR32LZWrPW": {
"title": "v-html",
"description": "The `v-html` directive is similar to the `v-text` directive, but the difference is that `v-html` renders its content as HTML. This means that if you pass an HTML element it will be rendered as an element and not plain text. Since the content is render as HTML, it can pose a security risk if the content contains malicius JavaScript code. For this reason you should never use this directive in combination with user input, unless the input is first properly sanitized.\n\nExample:\n\n <template>\n <p v-html=\"'<h1>Text</h1>'\"></p>\n </template>\n \n\nVisit the following resources to learn more:",
"description": "The `v-html` directive is similar to the `v-text` directive, but the difference is that `v-html` renders its content as HTML. This means that if you pass an HTML element it will be rendered as an element and not plain text. Since the content is render as HTML, it can pose a security risk if the content contains malicious JavaScript code. For this reason you should never use this directive in combination with user input, unless the input is first properly sanitized.\n\nExample\n-------\n\n <template>\n <p v-html=\"'<h1>Text</h1>'\"></p>\n </template>\n \n\nVisit the following resources to learn more:",
"links": [
{
"title": "v-html documentation",
"title": "v-html Documentation",
"url": "https://vuejs.org/api/built-in-directives.html#v-html",
"type": "article"
}
@ -264,10 +281,10 @@
},
"_TlbGTKFCMO0wdLbC6xHX": {
"title": "v-show",
"description": "`v-show` is similar to `v-if` in that it allows you to conditionally render components. However, it does not remove the component from the DOM and merely toggles its `display` CSS property to be `hidden`. It also does not work with `v-else-if` oe `v-else`.\n\nPrefer `v-show` over `v-if` if the component's visibility needs to change often, and `v-if` if not.\n\nVisit the following resources to learn more:",
"description": "`v-show` is similar to `v-if` in that it allows you to conditionally render components. However, it does not remove the component from the DOM and merely toggles its `display` CSS property to be `hidden`. It also does not work with `v-else-if` oe `v-else`. Prefer `v-show` over `v-if` if the component's visibility needs to change often, and `v-if` if not.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Vue Conditional Rendering Docs",
"title": "Vue Conditional Rendering",
"url": "https://vuejs.org/guide/essentials/conditional.html#v-show",
"type": "article"
}
@ -275,7 +292,7 @@
},
"xHj3W9Ig3MVuVlGyXchaP": {
"title": "v-if",
"description": "Conditionally render an element or a template fragment based on the truthy-ness of the expression value.\n\nWhen a `v-if` element is toggled, the element and its contained directives / components are destroyed and re-constructed. If the initial condition is falsy, then the inner content won't be rendered at all.\n\nVisit the following resources to learn more:",
"description": "Conditionally render an element or a template fragment based on the truthy-ness of the expression value. When a `v-if` element is toggled, the element and its contained directives / components are destroyed and re-constructed. If the initial condition is falsy, then the inner content won't be rendered at all.\n\nExample\n-------\n\n <h1 v-if=\"awesome\">Vue is awesome!</h1>\n \n\nVisit the following resources to learn more:",
"links": [
{
"title": "v-if Documentation",
@ -289,7 +306,7 @@
"description": "The `v-else` conditionally renders an element or a template fragment as a function in case the `v-if` does not fulfil the condition.\n\nVisit the following resources for more information:",
"links": [
{
"title": "v-else documentation",
"title": "v-else Documentation",
"url": "https://vuejs.org/api/built-in-directives.html#v-else",
"type": "article"
}
@ -308,10 +325,10 @@
},
"3ftwRjQ9e1-qDT9BV53zr": {
"title": "v-for",
"description": "The `v-for` directive is used to render an HTML element, a block of elements, or even a component based on an array, an object, or a set number of times. When using this directive it is important to assign a unique key to each item to avoid issues and improve perfomance. This directive follows the `item in items` syntax.\n\nExample:\n\n <script setup>\n import { ref } from 'vue';\n const foods = ref([\n {id: 1, name: \"apple\"},\n {id: 2, name: \"pear\"},\n {id: 3, name: \"pizza\"}\n ]);\n </script>\n \n <template>\n <p v-for=\"food in foods\" :key=\"food.id\">{{ food.name }}</p>\n </template>\n \n\nVisit the following resources to learn more:",
"description": "The `v-for` directive is used to render an HTML element, a block of elements, or even a component based on an array, an object, or a set number of times. When using this directive it is important to assign a unique key to each item to avoid issues and improve performance. This directive follows the `item in items` syntax.\n\nExample\n-------\n\n <script setup>\n import { ref } from 'vue';\n const foods = ref([\n {id: 1, name: \"apple\"},\n {id: 2, name: \"pear\"},\n {id: 3, name: \"pizza\"}\n ]);\n </script>\n \n <template>\n <p v-for=\"food in foods\" :key=\"food.id\">{{ food.name }}</p>\n </template>\n \n\nVisit the following resources to learn more:",
"links": [
{
"title": "v-for documentation",
"title": "v-for Documentation",
"url": "https://vuejs.org/guide/essentials/list#v-for",
"type": "article"
}
@ -319,15 +336,21 @@
},
"hVuRmhXVP65IPtuHTORjJ": {
"title": "v-on",
"description": "",
"links": []
"description": "The v-on directive is placed on an element to attach an event listener. To attach an event listener with v-on we need to provide the event type, and any modifier, and a method or expression that should run when that event occurs.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "v-on Directive",
"url": "https://www.w3schools.com/vue/ref_v-on.php",
"type": "article"
}
]
},
"cuM9q9vYy8JpZPGeBffd1": {
"title": "v-bind",
"description": "The `v-bind` directive dynamically binds an HTML attribute to data.\n\nThe shorthand for this directive is `:`\n\nExample:\n\n <script setup>\n import { ref } from 'vue';\n const image_url = ref(\"path/to/image.png\")\n </script>\n \n <template>\n <img :src=\"image_url\" />\n </template>\n \n\nVisit the following resources for more information:",
"description": "The `v-bind` directive dynamically binds an HTML attribute to data. The shorthand for this directive is `:`\n\nExample\n-------\n\n <script setup>\n import { ref } from 'vue';\n const image_url = ref(\"path/to/image.png\")\n </script>\n \n <template>\n <img :src=\"image_url\" />\n </template>\n \n\nVisit the following resources for more information:",
"links": [
{
"title": "v-bind documentation",
"title": "v-bind Documentation",
"url": "https://vuejs.org/api/built-in-directives.html#v-bind",
"type": "article"
}
@ -357,10 +380,10 @@
},
"5k9CrbzhNy9iiS6ez2UE6": {
"title": "v-once",
"description": "The `v-once` directive makes an HTML element render only once, skipping every future update.\n\nExample:\n\n <script setup>\n import { ref } from 'vue';\n const input = ref(\"Some Text\");\n </script>\n \n <template>\n <input v-model=\"input\">\n <p v-once>{{ input }}</p>\n </template>\n \n\nIn this example the **p** element will not change its text even if the input variable is changed through the **input** element.\n\nVisit the following resources to learn more:",
"description": "The `v-once` directive makes an HTML element render only once, skipping every future update.\n\nExample\n-------\n\n <script setup>\n import { ref } from 'vue';\n const input = ref(\"Some Text\");\n </script>\n \n <template>\n <input v-model=\"input\">\n <p v-once>{{ input }}</p>\n </template>\n \n\nIn this example the **p** element will not change its text even if the input variable is changed through the **input** element.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "v-once documentation",
"title": "v-once Documentation",
"url": "https://vuejs.org/api/built-in-directives.html#v-once",
"type": "article"
}
@ -368,7 +391,7 @@
},
"mlsrhioiEkqnRIL6O3hNa": {
"title": "v-pre",
"description": "The `v-pre` directive makes an element render its content as-is, skipping its compilation. The most common use case is when displaying raw mustache syntax.\n\nExample:\n\n <script setup>\n import { ref } from 'vue';\n const text = ref(\"Some Text\")\n </script>\n \n <template>\n <p v-pre >{{ text }}</p>\n </template>\n \n\nThe **p** element will display: `{{ text }}` and not `Some Text` because the compilation is skipped.\n\nVisit the following resources to learn more:",
"description": "The `v-pre` directive makes an element render its content as-is, skipping its compilation. The most common use case is when displaying raw mustache syntax.\n\nExample\n-------\n\n <script setup>\n import { ref } from 'vue';\n const text = ref(\"Some Text\")\n </script>\n \n <template>\n <p v-pre >{{ text }}</p>\n </template>\n \n\nThe **p** element will display: `{{ text }}` and not `Some Text` because the compilation is skipped.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "v-pre Documentation",
@ -379,10 +402,10 @@
},
"RrSekP8Ub01coegMwLP6a": {
"title": "v-cloak",
"description": "The v-cloak directive is used to prevent the uncompiled Vue template from being visible while the Vue instance is still loading. It temporarily hides the content until Vue has finished compiling the template\n\nThe v-cloak directive remains until the component instance is mounted.\n\n <div v-cloak>\n {{ message }}\n </div>\n \n\nCombined with CSS, you can hide elements with v-cloak until they are ready.\n\n [v-cloak] {\n display: none;\n }\n \n\nThe `<div>` will not be visible until the compilation is done.\n\nVisit the following resources to learn more:",
"description": "The v-cloak directive is used to prevent the uncompiled Vue template from being visible while the Vue instance is still loading. It temporarily hides the content until Vue has finished compiling the template. The v-cloak directive remains until the component instance is mounted.\n\n <div v-cloak>\n {{ message }}\n </div>\n \n\nCombined with CSS, you can hide elements with v-cloak until they are ready.\n\n [v-cloak] {\n display: none;\n }\n \n\nThe `<div>` will not be visible until the compilation is done.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "v-cloak documentation",
"title": "v-cloak Documentation",
"url": "https://vuejs.org/api/built-in-directives.html#v-cloak",
"type": "article"
}
@ -393,7 +416,7 @@
"description": "Optimizing rendering is crucial for ensuring a smooth and efficient user experience across all your frontend projects. Sluggish webpages can lead to frustration for users, and potentially cause them to entirely abandon your web application. This issue comes up most often in single-page applications (SPAs), where the entirety of your application is loaded within a single webpage, and updates to it are handled dynamically without needing a full reload of the webpage.\n\nLearn more from the following resources:",
"links": [
{
"title": "Optimizing rendering in Vue",
"title": "Optimizing Rendering in Vue",
"url": "https://blog.logrocket.com/optimizing-rendering-vue/",
"type": "article"
}
@ -401,8 +424,14 @@
},
"dxwKfBxd5KYVkfEPMdHp-": {
"title": "Debugging",
"description": "",
"links": []
"description": "Debugging in Vue.js involves identifying and fixing issues in your Vue applications. It’s an essential part of the development process, and there are several tools and techniques you can use to effectively debug your Vue code.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Debugging Documentation",
"url": "https://vuejs.org/v2/cookbook/debugging-in-vscode.html",
"type": "article"
}
]
},
"WiGG9_4G5y-AVA9byw6_g": {
"title": "Lifecycle Hooks",
@ -448,12 +477,18 @@
},
"NfB3HlZ3uwYK5xszvV50b": {
"title": "Input Bindings",
"description": "",
"links": []
"description": "Input bindings are a way to bind user input to a component's data. This allows the component to react to user input and update its state accordingly. Input bindings are typically used with form elements such as text inputs, checkboxes, and select dropdowns.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Input Bindings",
"url": "https://vuejs.org/guide/essentials/forms",
"type": "article"
}
]
},
"gMFndBcrTC6FtGryqN6dX": {
"title": "v-model",
"description": "The v-model directive in Vue.js is used for creating two-way data bindings on form input elements, such as , , and . This means that the data can be updated in the component when the user inputs something, and the UI will update if the data in the component changes.",
"description": "The v-model directive in Vue.js is used for creating two-way data bindings on form input elements, such as `<input>`, `<textarea>`, and `<select>`. This means that the data can be updated in the component when the user inputs something, and the UI will update if the data in the component changes.",
"links": [
{
"title": "Form Input Bindings",
@ -464,8 +499,14 @@
},
"dSfrFLr8wKkLAOMJwtCTr": {
"title": "Modifiers",
"description": "",
"links": []
"description": "Modifiers are special suffixes that can be added to directives (such as v-model and v-bind) to alter their behavior. Modifiers allow you to specify additional functionality or constraints to the binding, making it more flexible and powerful.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Modifiers",
"url": "https://v2.vuejs.org/v2/guide/components-custom-events.html",
"type": "article"
}
]
},
"4p6Gh2fMPA8hls_mWa5HR": {
"title": "Event Handling",
@ -480,28 +521,63 @@
},
"b7iXwtUnELg_ShbCyTrNA": {
"title": "Binding Events",
"description": "",
"links": []
"description": "Vue.js is an open-source Model–View–ViewModel front-end JavaScript framework for building user interfaces and single-page applications. Vue.js has many own directives for DOM manipulation such as v-bind, v-on, v-model, etc. Binding events is an essential part of creating interactive applications. You can bind events using the v-on directive or its shorthand, the @ symbol.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Binding Events",
"url": "https://vuejs.org/guide/essentials/event-handling",
"type": "article"
},
{
"title": "Vue.js Event Handling",
"url": "https://www.geeksforgeeks.org/vue-js-event-handling/",
"type": "article"
}
]
},
"gVahaZNPktQuqdukFEbQH": {
"title": "Inline / Method Handlers",
"description": "",
"links": []
"description": "In Vue.js, **inline handlers** are defined directly in the template using expressions, making them suitable for simple tasks. For example, you might use an inline handler to increment a counter. **Method handlers**, on the other hand, are defined in the `methods` option and are better for more complex logic or when reusing functionality across multiple components. They improve code readability and maintainability.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Method Handlers",
"url": "https://v1.vuejs.org/guide/events.html",
"type": "article"
}
]
},
"Aaf7eA-5sbAD5Cs1MbdTQ": {
"title": "Event Modifiers",
"description": "",
"links": []
"description": "In Vue.js, event modifiers are special postfixes that you can add to event handlers to control the behavior of events more easily. They help simplify common tasks such as stopping propagation, preventing default actions, and ensuring that the event is triggered only under certain conditions.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Event Modifiers in Vue.js",
"url": "https://www.freecodecamp.org/news/how-event-handling-works-in-vue-3-guide-for-devs/",
"type": "article"
}
]
},
"BXw36wqhmi3gExXwFCIBd": {
"title": "Key Modifiers",
"description": "",
"links": []
"description": "Input bindings are a way to bind user input to a component's data. This allows the component to react to user input and update its state accordingly. Input bindings are typically used with form elements such as text inputs, checkboxes, and select dropdowns.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Input Bindings",
"url": "https://vuejs.org/guide/essentials/forms",
"type": "article"
}
]
},
"x0wl2Qz2LTP4Q2tThKAt3": {
"title": "Mouse Button Modifiers",
"description": "",
"links": []
"description": "Mouse button modifiers are a type of modifier that can be used with event handlers to specify which mouse button or buttons should trigger the event. These modifiers allow you to customize the behavior of event handlers, such as v-on:click, to respond to specific mouse button clicks.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Button Modifiers",
"url": "https://medium.com/evolve-you/vue-3-keyboard-and-mouse-a4866d7d0e8",
"type": "article"
}
]
},
"Bx1Atxcf15AEaA1BiSIc6": {
"title": "Computed Properties",
@ -549,12 +625,22 @@
},
"br1r8KIf5KInY5mk2xhA6": {
"title": "Custom Directives",
"description": "So far you may have covered two forms of code reuse in Vue: [components](https://vuejs.org/guide/essentials/component-basics.html) and [composables](https://vuejs.org/guide/reusability/composables.html). Components are the main building blocks, while composables are focused on reusing stateful logic. Custom directives, on the other hand, are mainly intended for reusing logic that involves low-level DOM access on plain elements.\n\nVisit the following resources to learn more:",
"description": "So far you may have covered two forms of code reuse in Vue: components and composables. Components are the main building blocks, while composables are focused on reusing stateful logic. Custom directives, on the other hand, are mainly intended for reusing logic that involves low-level DOM access on plain elements.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Custom Directives",
"url": "https://vuejs.org/guide/reusability/custom-directives.html",
"type": "article"
},
{
"title": "Composables",
"url": "https://vuejs.org/guide/reusability/composables.html",
"type": "article"
},
{
"title": "Components",
"url": "https://vuejs.org/guide/essentials/component-basics.html",
"type": "article"
}
]
},
@ -576,7 +662,7 @@
},
"kdlXhbw_a81xdZtyK-pVa": {
"title": "Watchers",
"description": "Computed properties allow us to declaratively compute derived values. However, there are cases where we need to perform \"side effects\" in reaction to state changes - for example, mutating the DOM, or changing another piece of state based on the result of an async operation.\n\nWith Composition API, we can use the watch function to trigger a callback whenever a piece of reactive state changes.\n\nVisit the following resources to learn more:",
"description": "Computed properties allow us to declaratively compute derived values. However, there are cases where we need to perform \"side effects\" in reaction to state changes - for example, mutating the DOM, or changing another piece of state based on the result of an async operation. With Composition API, we can use the watch function to trigger a callback whenever a piece of reactive state changes.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Watchers in Vue.js",
@ -623,7 +709,7 @@
"description": "VueUse is a collection of utility functions based on Composition API. It has over 200+ functions, is tree-shakable, has first-class TypeScript support, and has a small bundle size. VueUse is a great choice for adding common utilities to your Vue 3 projects.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Website - VueUse",
"title": "VueUse",
"url": "https://vueuse.org/",
"type": "article"
}
@ -631,15 +717,26 @@
},
"ixRG0xfEp4BmyvCR0mtoR": {
"title": "Routing",
"description": "Routing is an essential concept in Single Page Applications (SPA). When your application is divided into separated logical sections, and all of them are under their own URL, your users can easily share links among each other.",
"links": []
"description": "Routing is an essential concept in Single Page Applications (SPA). When your application is divided into separated logical sections, and all of them are under their own URL, your users can easily share links among each other.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Routing in Vue.js",
"url": "https://vuejs.org/guide/scaling-up/routing.html",
"type": "article"
},
{
"title": "The Vue Router",
"url": "https://router.vuejs.org/",
"type": "article"
}
]
},
"COxkmvqe9jFtV9WtGjfbh": {
"title": "Vue Router",
"description": "Vue Router is the official router for Vue.js which allows creating static/dynamic routes, has support for navigation interception, allows for component based configuration and much more.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Vue Router",
"title": "The Vue Router",
"url": "https://router.vuejs.org/",
"type": "article"
},
@ -692,7 +789,7 @@
"type": "opensource"
},
{
"title": "Official Website: Vee Validate",
"title": "Vee Website: Vee Validate",
"url": "https://vee-validate.logaretm.com/v4/",
"type": "article"
}
@ -708,7 +805,7 @@
"type": "opensource"
},
{
"title": "Official Website: Vuelidate",
"title": "Vuelidate Website",
"url": "https://vuelidate.js.org/",
"type": "article"
}
@ -719,7 +816,7 @@
"description": "Server-side rendering refers to the process that the service side completes the HTML structure splicing of the page, sends it to the browser, and then binds the status and events for it to become a fully interactive page.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "what is server side rendering",
"title": "What is Server Side Rendering (SSR)?",
"url": "https://www.educative.io/answers/what-is-server-side-rendering",
"type": "article"
},
@ -739,12 +836,7 @@
"type": "article"
},
{
"title": "what is server side rendering?",
"url": "https://www.youtube.com/watch?v=GQzn7XRdzxY",
"type": "video"
},
{
"title": "What is server-side rendering for web development?",
"title": "What is Server Side Rendering (SSR) for Web Development?",
"url": "https://www.youtube.com/watch?v=okvg3MRAPs0",
"type": "video"
}
@ -755,7 +847,7 @@
"description": "A static site generator is a tool that generates a full static HTML website based on raw data and a set of templates. Essentially, a static site generator automates the task of coding individual HTML pages and gets those pages ready to serve to users ahead of time. Because these HTML pages are pre-built, they can load very quickly in users' browsers.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "What is a static site generator?",
"title": "What is a Static Site Generator?",
"url": "https://www.cloudflare.com/learning/performance/static-site-generator/",
"type": "article"
},
@ -786,7 +878,7 @@
"description": "Quasar Framework is an open-source Vue.js based framework for building apps, with a single codebase, and deploy it on the Web as a SPA, PWA, SSR, to a Mobile App, using Cordova for iOS & Android, and to a Desktop App, using Electron for Mac, Windows, and Linux.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Website: Quasar",
"title": "Quasar",
"url": "https://quasar.dev/",
"type": "article"
},
@ -816,6 +908,11 @@
"url": "https://nuxt.com/docs/getting-started/introduction",
"type": "article"
},
{
"title": "Nuxt Examples",
"url": "https://nuxt.com/docs/examples/essentials/hello-world",
"type": "article"
},
{
"title": "Get Started with Nuxt",
"url": "https://explorers.netlify.com/learn/get-started-with-nuxt",
@ -826,11 +923,6 @@
"url": "https://vueschool.io/courses/nuxtjs-fundamentals",
"type": "article"
},
{
"title": "Nuxt Examples",
"url": "https://nuxt.com/docs/examples/essentials/hello-world",
"type": "article"
},
{
"title": "Explore top posts about JavaScript",
"url": "https://app.daily.dev/tags/javascript?ref=roadmapsh",
@ -843,7 +935,7 @@
"description": "Vitepress is a static site generator that is built on top of Vite. It is a lightweight and fast static site generator that is designed to work with Vue 3. Vitepress is a great choice for building documentation sites, blogs, and other static sites.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Website",
"title": "Vitepress Website",
"url": "https://vitepress.dev/",
"type": "article"
}
@ -851,7 +943,7 @@
},
"LjEAviRMtPLwUUlfcof1h": {
"title": "Vitest",
"description": "Vitest is a fast Vite-native unit test framework with out-of-box ESM and TypeScript support. Works on React, Vue, Svelte and more projects created with Vite\n\nVisit the following resources to learn more:",
"description": "Vitest is a fast Vite-native unit test framework with out-of-box ESM and TypeScript support. It Works on React, Vue, Svelte and more projects created with Vite.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Vitest Website",
@ -886,12 +978,12 @@
"description": "Cypress framework is a JavaScript-based end-to-end testing framework built on top of Mocha – a feature-rich JavaScript test framework running on and in the browser, making asynchronous testing simple and convenient. It also uses a BDD/TDD assertion library and a browser to pair with any JavaScript testing framework.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Website",
"title": "Cypress Website",
"url": "https://www.cypress.io/",
"type": "article"
},
{
"title": "Official Documentation",
"title": "Cypress Documentation",
"url": "https://docs.cypress.io/guides/overview/why-cypress#Other",
"type": "article"
},
@ -912,7 +1004,7 @@
"description": "Playwright Test was created specifically to accommodate the needs of end-to-end testing. Playwright supports all modern rendering engines including Chromium, WebKit, and Firefox. Test on Windows, Linux, and macOS, locally or on CI, headless or headed with native mobile emulation of Google Chrome for Android and Mobile Safari.Playwright leverages the DevTools protocol to write powerful, stable automated tests.Playwright can actually see into and control the browser rather than relying on a middle translation layer, it allows for the simulation of more insightful and relevant user scenarios.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Website: Playwright",
"title": "Playwright Website",
"url": "https://playwright.dev/",
"type": "article"
},
@ -964,12 +1056,12 @@
"description": "Vuetify is a Vue UI Library with beautifully handcrafted Material Components. No design skills required — everything you need to create amazing applications is at your fingertips.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Website",
"title": "Vuetify Website",
"url": "https://vuetifyjs.com/en/",
"type": "article"
},
{
"title": "Getting started with Vuetify",
"title": "Getting Started with Vuetify",
"url": "https://vuetifyjs.com/en/getting-started/installation/",
"type": "article"
},
@ -990,12 +1082,12 @@
"description": "Element UI is another Vue.js component library with several built-in components to style your Vue.js applications.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Website",
"title": "Element UI Website",
"url": "https://element-plus.org/en-US/",
"type": "article"
},
{
"title": "Official Getting Started",
"title": "Getting Started - Element UI",
"url": "https://element-plus.org/en-US/guide/design.html",
"type": "article"
}
@ -1005,6 +1097,11 @@
"title": "State Management",
"description": "Application state management is the process of maintaining knowledge of an application's inputs across multiple related data flows that form a complete business transaction -- or a session -- to understand the condition of the app at any given moment. In computer science, an input is information put into the program by the user and state refers to the condition of an application according to its stored inputs -- saved as variables or constants. State can also be described as the collection of preserved information that forms a complete session.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "State Management",
"url": "https://vuejs.org/guide/scaling-up/state-management.html",
"type": "article"
},
{
"title": "What is State Management?",
"url": "https://www.techtarget.com/searchapparchitecture/definition/state-management",
@ -1017,7 +1114,7 @@
"description": "Pinia is a store library for Vue.js, and can be used in Vue 2 and Vue 3, with the same API, except in SSR and its installation. It allows state sharing between pages and components around the application. As the documentation says, it is extensible, intuitive (by organization), has devtools support (in Vue.js devtools), inferred typed state even in javascript and more. In Pinia you can access, mutate, replace, use getters that works like computed, use actions, etc. The library is recommended by the official Vue.js documentation.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Documentation",
"title": "Pinia Documentation",
"url": "https://pinia.vuejs.org/",
"type": "article"
},
@ -1036,6 +1133,11 @@
"title": "How To Make API calls in Vue.JS Applications",
"url": "https://medium.com/bb-tutorials-and-thoughts/how-to-make-api-calls-in-vue-js-applications-43e017d4dc86",
"type": "article"
},
{
"title": "How to Use RapidAPI Client with Vue.js",
"url": "https://rapidapi.com/guides/fetch-api-with-vue",
"type": "article"
}
]
},
@ -1049,7 +1151,7 @@
"type": "article"
},
{
"title": "Official Docs",
"title": "Apollo Docs",
"url": "https://www.apollographql.com/docs/",
"type": "article"
},
@ -1059,7 +1161,7 @@
"type": "article"
},
{
"title": "Official YouTube Channel",
"title": "Apollo's YouTube Channel",
"url": "https://www.youtube.com/c/ApolloGraphQL/",
"type": "video"
},
@ -1072,10 +1174,10 @@
},
"n5IlN-wv4k0r16CvhoSpD": {
"title": "Axios",
"description": "The most common way for frontend programs to communicate with servers is through the HTTP protocol. You are probably familiar with the Fetch API and the XMLHttpRequest interface, which allows you to fetch resources and make HTTP requests.\n\nAxios is a client HTTP API based on the XMLHttpRequest interface provided by browsers.\n\nVisit the following resources to learn more:",
"description": "Axios is a client HTTP API based on the XMLHttpRequest interface provided by browsers. The most common way for frontend programs to communicate with servers is through the HTTP protocol. You are probably familiar with the Fetch API and the XMLHttpRequest interface, which allows you to fetch resources and make HTTP requests.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Axios Getting Started",
"title": "Getting Started with Axios",
"url": "https://axios-http.com/docs/intro",
"type": "article"
},
@ -1093,10 +1195,10 @@
},
"ufnt87swK61kxShLuVc1-": {
"title": "fetch",
"description": "The fetch() method in JavaScript is used to request to the server and load the information on the webpages. The request can be of any APIs that return the data of the format JSON or XML. This method returns a promise.\n\nVisit the following resources to learn more:",
"description": "The `fetch()` method in JavaScript is used to request to the server and load the information on the webpages. The request can be of any APIs that return the data of the format JSON or XML. This method returns a promise.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Fetch MDN Docs",
"title": "Fetch - MDN",
"url": "https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch",
"type": "article"
},
@ -1106,7 +1208,7 @@
"type": "article"
},
{
"title": "Network request - Fetch",
"title": "Network Request - Fetch",
"url": "https://javascript.info/fetch",
"type": "article"
}
@ -1117,7 +1219,7 @@
"description": "TanStack Query is a data fetching and caching library for Vue.js and React. It is a part of the TanStack ecosystem.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Official Website",
"title": "Tanstack Query Website",
"url": "https://tanstack.com/query",
"type": "article"
}
@ -1149,7 +1251,7 @@
"description": "Since Vue.js is a web framework, it does not natively support mobile app development. So how do we get access to native mobile features such as the camera and geolocation? Ionic has an official native runtime called Capacitor. With Capacitor’s plugin, you can access the native API of the device your app is running on and build truly native mobile application with Ionic Vue.\n\nVisit the following resources to learn more:",
"links": [
{
"title": "Building cross-platform apps with Capacitor and Vue.js",
"title": "Building Cross-Platform Apps with Capacitor and Vue.js",
"url": "https://blog.logrocket.com/building-cross-platform-apps-with-capacitor-and-vue-js/",
"type": "article"
},

Loading…
Cancel
Save