Checkout page when we get this warning SolutionThe Default Shipping Method can be set at Commerce > Websites > Website List > Edit Website > Shopping tab. If shipping items are not showing on the dropdown field on the Set Up Web Site page, these shipping items are not set to be displayed on the… Continue reading Issue: No delivery methods available for this address
Author: Radhika R
How to run Cron Jobs in Node.js
These are the tasks that run periodically by the operating system. Users can schedule commands the OS will run these commands automatically according to the given time. We will use a package called node-cron which is a task scheduler in pure JavaScript for node.js. We are also using express as a server. Install the required… Continue reading How to run Cron Jobs in Node.js
How to send email using nodemailer and nodejs
Nodemailer is the Node.js npm module that allows you to send email easily. Install nodemailer npm install nodemailer Include the nodemailer module in the code using require(‘nodemailer’). Use nodemailer.createTransport() function to create a transporter who will send mail. It contains the service name and authentication details (user ans password). Declare a variable mailDetails that contains… Continue reading How to send email using nodemailer and nodejs
Creating A GraphQL Server With Node.js And Express
GraphQL is a language that enables you to provide a complete and understandable description of the data in your API. Furthermore it gives clients the power to ask for exactly what they need and nothing more. Creating A Basic GraphQL Server With Express let’s create the a first server implementation by inserting the following JS… Continue reading Creating A GraphQL Server With Node.js And Express
How to Integrate Stripe Payment Gateway in Node.js
Install this package by using this commandnpm install stripeTo run the file you need to run the following commandnode index.jsYou need to include stripe module in your file by using these lines.var stripe = require(‘stripe’)(‘Your_Secret_Key’);To get your secret key, simply go to Stripe Offical Website and create an account, then you can get your secret… Continue reading How to Integrate Stripe Payment Gateway in Node.js