Category : Javascript
Recently, one of my clients wants to generate node.js production build that includes node_modules so he doesn’t need to run npm install on every server. Also he can distribute same build to his N number of customers servers. As this is deployed on multiple VM there is config.js file which will be going to read…
In this article I am going to explain you how you can generate scheduled database backup and upload it to google drive using Node.js and Google apis. We will use MongoDB as database to backup and will use Google Cloud to create Service Account. I am assuming that you might have knowledge about mongodump command and…
You might have worked with normal sitemap but have you ever worked with large websites that has hundreds of thousands of URLs in it. If not and if you are looking for solution for how to manage sitemap for large website e.g. Amazon.com then this blog post is for you. Our client website Bidnfix.com is service…
I was working on a react-native app in which I used react-navigation for routing. React-navigation provides 3 different types of navigators – Stack, Tab, Drawer. I used all and they worked well except of Drawer. I faced some issues while integrating Drawer navigator. My app require to display drawer only in few pages but react-navigation drawer…
Mobile app is growing at rapid pace so as it’s development frameworks. React native one of the such mobile app development frameworks which is growing at rapid pace because of it’s simplicity in development and having same syntax as in React. React native is also a better option for mobile development because it supports npm modules natively…