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
Author: Radhika R
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