The first time I tried to publish a vue.js component to NPM was to experiment and mimic UI component libraries and frameworks such as Vuetify and Quasar. I wanted to create a design framework on top of a front-end
Tag Archives: javascript
NodeJS Application with Express – Handlebars and Mongoose
In this post, I am going to build a simple application that would display the data from the MongoDB. This application will look similar to a blog. It will display the title, author name and the content in a
Understanding the imports and exports of JavaScript ES6
JavaScript ES6 supports for exporting and importing functions, variables from one module to another. There are two kinds of exports: A named export and a default export. Named Export: In JavaScript ES6, Named export are used to export
Understanding What is Webpack
When I started learning React, I was introduced to the whole new world, new concepts, new tools, new types of files. For the first few days, I was overwhelmed by the amount of work that was required to build
React- Redux tutorial: Build a Simple App
In this post, we are going to build a simple app using React and Redux. This app is going to perform a complex task (pun intended!) of changing the number that is already displayed. The final app will look
Redux tutorial: Getting started
In this post, we will use the main functionalities of Redux and create Actions to add two numbers. We can use Redux without touching React and I suppose that is an easier way to start learning Redux. Because, you
How to Install Jest to test React Components
React is a JavaScript library for building user interfaces and Jest is a testing framework to test the React components. In this article, we will go through the installation of Jest as well as get started with the testing