Deborah EmeniforDeborah Emeni's Blogdebbie.hashnode.net·Nov 26, 2020A Beginners guide to User Authentication and Authorization with JSON WEB TOKENS versus Sessions in NodeJsIn a web server, authentication (https://g.co/kgs/Yy9RH2) is used to verify a user in the client-side trying to access the database or the site. The server can achieve this in various ways but in most cases, the server uses the user's information li...Discuss·88 likes·2.1K readsnodejs
Osumgba ChiamakaforChiamaka Osumgba - Software Developerpearl.hashnode.net·Aug 4, 2020How to Build an API With Nodejs, Expressjs and Google Sheet - Series 1Got a bunch of work done with spreadsheets and you are wondering how to integrate that data into your Nodejs application without moving it to a relational or NoSql database? That’s possible and you’ll learn how to get it done in this article. Google ...Bolaji Ayodeji and 6 others are discussing this7 people are discussing thisDiscuss·73 likes·394 readsgoogle sheetsThis is really amazing, thanks for sharing! 3
Osumgba ChiamakaforChiamaka Osumgba - Software Developerpearl.hashnode.net·Aug 8, 2020How to Build an API With Nodejs, Expressjs and Google Sheet - Series 2How to Build an API With Nodejs, Expressjs and Google Sheet - Series 2 Welcome back to the second series of our article on building an API with Nodejs, Expressjs and Google Sheet. In the previous article we initialized our project, authorised our app...Bolaji Ayodeji and 1 other are discussing this2 people are discussing thisDiscuss·23 likes·221 readsnodejsYet another amazing one, thanks for sharing! 3
Deborah EmeniforDeborah Emeni's Blogdebbie.hashnode.net·Nov 26, 2020A Beginners guide to User Authentication and Authorization with JSON WEB TOKENS versus Sessions in NodeJsIn a web server, authentication (https://g.co/kgs/Yy9RH2) is used to verify a user in the client-side trying to access the database or the site. The server can achieve this in various ways but in most cases, the server uses the user's information li...Discuss·88 likes·2.1K readsnodejs
Deborah EmeniforDeborah Emeni's Blogdebbie.hashnode.net·Nov 7, 2020An introduction to the Use of Modularity in Node.js for BeginnersIn Client side Javascript, when you declare a variable or a function, it is added to the global scope. For example, when you define a function, it is added to the global scope and it is available via the window object. var name = function() { //code...Discuss·4 likes·250 readsnodejs
Adrian HenryforHungry Turtle Codehungryturtlecode.hashnode.net·Oct 26, 2020Adding MongoDB to ExpressJS — Part 4 | Hungry Turtle CodeThis is part 4 of a 4 part series on building an API in Express I posted over on my website. https://www.youtube.com/watch?v=dBGhSt5EXMo&feature=emb_title MongoDB to the rescue So we have our API routes and we have our data. Next step is to add in th...DiscussExpress.js
Adrian HenryforHungry Turtle Codehungryturtlecode.hashnode.net·Oct 23, 2020ExpressJS API Part 3 — Serving Data| Hungry Turtle CodeThis was originally posted on my website: Serving Data With ExpressJS https://www.youtube.com/watch?v=3v5n4DWYk2A&feature=emb_title Getting our data on In the original AngularJS quiz app tutorial I just pasted the data we used for the facts and quiz ...DiscussExpress.js
Fábio RosadoforThe Flying Devfabiorosado.hashnode.net·Oct 22, 2020How to keep your npm dependencies updatedIt's always a good idea to keep dependencies updated, from performance gains to fixing security issues, it just makes sense to update. But your project might depend on a lot of dependencies and if you haven't worked on a project for a few months, cha...Discuss·18 likes·230 readsnpm
Adrian HenryforHungry Turtle Codehungryturtlecode.hashnode.net·Oct 21, 2020Create an API with Express JS | Hungry Turtle Codehttps://www.youtube.com/watch?v=kibitXQ9aME&feature=emb_title This is part one of a series originally published on my website where we build an express JS API Getting Started With Express JS A while ago (probably too long, i’m sorry) I made a tutoria...Discuss·6 likesExpress.js
Nemanja VasićforNemanjas Blognemanjas.hashnode.net·Oct 2, 2020Protecting resources & handling user authentication using Node ACL & Passport.js in NodeJsINTRODUCTION In the first part of this blog, I'll focus on Node ACL, later I'll give you an introduction to Passport.js, also show some code examples, and give you an explanation how to authenticate users using Passport.js. What is Node ACL and why y...Discuss·465 readsauthentication
Rajan PrasadforRajan's Blogdmr.hashnode.net·Aug 24, 2020Getting Started with MongoDBMongoDB is a NoSQL, general purpose, document based, distributed database. Document based means it stores data in JSON-like documents. In this article we're gonna set-up a free tier MongoDB cluster on MongoDB cloud and connect with our NodeJS & Exp...Discuss·106 readsMongoDB
Mcdavid EmereuwaforWetin I sabi?mcdavid.hashnode.net·Aug 21, 2020How to set up an email service with RabbitMQ, AWS SES, and PM2 on NodeJS.This is an article I originally wrote for the Learning Dollars blog. Read it below. https://blog.learningdollars.com/2020/03/09/how-to-set-up-an-email-service-with-rabbitmq-aws-ses-and-pm2-on-nodejs/Discuss·10 likes·166 readsDevops
Nauval ShidqiforNauvalnauval.hashnode.net·Aug 20, 2020Easy way to create RESTful API Documentation with APIDocJSAPI Documentation is a concise reference manual containing all the information required to work with the API. There are far many generator tools to create an API Documentation, such as apidocjs, swagger, slate, etc. It will make easier to generate a...Discuss·10 likes·95 readsAPIs