In this chapter, we are going to learn something new and tackle another challenge. We are going to upgrade the boring old general table feature to a rich full-fledged table with features like filtering, sorting, pagination, grouping, etc.
Creating Mock API using Mirage in a React application
Creating independent front-ends for any application leads to easily maintainable and flexible code but, for creating such independent front-ends, one has to mock the complete API so that the front-end has data and handles all the requests.
Setting Up Automated Semantic Versioning For Your NodeJS Project
Every project with a significant amount of dependencies should implement semantic versioning in order to avoid preventable issues later on. This post gives a detailed overview of how to do so in Node
Performance Optimizations for React Native Applications
React native has grown to be one of the most popular frameworks for building cross-platform mobile applications. React native allows us to share about 90% of our codebase between multiple platforms while maintaining a native feel and aesthetics.
Create simple POS with React.js, Node.js, and MongoDB #11: CRUD with Relation
In this chapter, we are going to continue to implement CRUD operation for the Relation data and assign the POS machine to branch.
Getting started with Git Hooks using ghooks
Git hooks are configured scripts that are executed at specific moments during git operations. ghooks is a package that configures git hooks so that specific commands can be run at those moments.
How I Built an Admin Dashboard with Python Flask
In this article, I will share the how I built an admin dashboard. I will give a step by step guideline on how I built this application with Python Flask, MongoDB and Heroku.
React Lesson 15: Checking Homework progress from Lesson 14
Today, we are going to cover homework from Lesson 14 and add comment API to load comments.
Create simple POS with React.js, Node.js, and MongoDB #10: CRUD Supplier
In this chapter, we are going to continue to implement CRUD operation for the Supplier information of a grocery store.
Ways to optimize React applications
Developing applications that are fast and efficient has always been the goal of every developer out there. Most of the job when working towards achieving the goals above gets done by frameworks and libraries like React, Angular, etc. A library like React is fast, and in most cases, you won’t need to apply optimization techniques to make your application faster or more efficient.