How to build a chrome extension in Vanilla JS

Hi everybody, In todays article we’re going to discuss how you can build a chrome extension in JS. We will be using vanilla Javascript and HTML/CSS to do this. Because our extension will be built using Javascript, this is the language which we will be using to communicate with browser api(Chrome API) But before that … Read more

Build a Discord Bot with Chat GPT 3 in Node.js

Build discord bot with chat gpt 3 in nodejs

Hello everybody, today we’re going to build a Discord BOT. In which we will integrate our Chat GPT 3. And we’re going to build this on Node.js platform but fundamentals are same, so you can apply it anywhere. What you will learn in this article: Although whatever I am gonna show you in this article … Read more

Linked List Data Structure with Implementation(JavaScript)

Linked List in Javascript

Hi coders, In this article we’re going to see what Linked List is and how it works. And we’ll also see a basic implementation of it in JavaScript. Although logic is same, so you can apply it anywhere. As i already mentioned it in title that Linked List is a Data Structure but unlike an … Read more

Wikibase SDK: Query data from Wikipedia(Wikidata)

Hello folks, I hope you all are doing good. Today we’re are going to do something cool(at least in my sense😅). Basically, we’re going to see how you can use wikidata to fetch publicily available data. It is also being used by wikipedia to fetch its structured data. Lets first talk about some of the … Read more

Create a Chrome Extension with Vue.Js

Hello folks, I hope you all are doing good. In this article, I’m going to show you how you can create Chrome Extension with Vue.JS framework. A chrome extension can help you to enhance your browser experience. Usually, you can build a Chrome Extension just by using Vanilla JS, HTML and CSS by following Google … Read more

How to create and register the component in VueJS 3

VueJS 3 Component

Hello coders, In this article, I’m going to show you that how you can create components in VueJS 3. But before that, let’s talk a little bit about component in VueJS 3. What is a component? Component is kind reusable code and that you can use throughout you Vue Application. And each component contains Its … Read more

How to Install And Use VueX in VueJS 3 (GUIDE)

VueX in VueJS 3

Hello coders, In this article I’m going to show you that how you can install VueX and use it inside your VueJS 3.0 project. So, we’re going to install Vuex in latest version VueJS, which is Vue.JS 3.0. Before that, let’s discuss first what is VueX and Why you should use it. What is Vuex? … Read more

How to setup Vue Router in VueJS 3 (GUIDE)

VueRouter is VueJS3

Hi coders, In this article, I’m going to explain you how you can setup Vue Router in Vuejs 3 version. I’ll explain step by step process from installation to usage of routers. Vue Router in VueJS 3.0: Let me first explain you that what is Router and why one should use it in their application. … Read more

VueJs 3 Basic Concepts – Getting started with Vue (GUIDE)

Vue Js 3 Guide for beginners

Hi coders, It’s a brief VueJS 3 Guide for beginners. And I’m going to explain basic concepts and terms of Vue.js 3.0. So, It’s a beginner guide to get started with Vue 3. Therefore, this article will be useful only if you’re a beginner. I’m going to use CDN instead of a development setup. Because … Read more

Arrow Function in JavaScript ES6 (GUIDE)

Arrow function in Javascript is one of the most useful feature that was introduced in JavaScript EcmaScript 6. You can also consider it as an anonymous or one line function. It also works differently than traditional functions when it comes to handling this keyword. In this article, I’m gonna give you brief explanation about what … Read more