Build a Simple Web App with Express, React and GraphQL

GraphQL and React have both become quite popular in the last few years, and it’s safe to say they go together like avocado and toast. A GraphQL server can be written in Node and lets you easily create a flexible API using JavaScript classes and functions…. Source: https://developer.okta.com/blog/2018/10/11/build-simple-web-app-with-express-react-graphql

Authenticate a Node ES6 API with JSON Web Tokens

In this guide, we’ll be implementing token based authentication in our own node.js A.P.I. using JSON web tokens. To keep this short and relatively sweet, if you’d like to read about what tokens are and why you should consider using them, have a look at this article here…. Source: https://scotch.io/tutorials/authenticate-a-node-es6-api-with-json-web-tokens

How to write a production-ready Node and Express app

When I started building Node & Express applications, I didn’t know how important it was to structure your application. Express doesn’t come with strict rules or guidelines for maintaining the project structure. You are free to use any structure you want…. Source: https://medium.freecodecamp.org/how-to-write-a-production-ready-node-and-express-app-f214f0b17d8c

Easy Node Authentication: Setup and Local

Authentication and logins in Node can be a complicated thing. Actually logging in for any application can be a pain. This article series will deal with authenticating in your Node application using the package Passport. We’ll release this entire gigantic series over 5 different tutorials…. Source: https://scotch.io/tutorials/easy-node-authentication-setup-and-local

AWS Lambda and the Node.js Event Loop

At radient.io we ❤️ serverless technologies. It helps us to be more productive, cost effective and ship our software faster. We use AWS Lambda in combination with Node.js and learned something interesting recently — how the AWS Lambda execution environment interacts with the Node…. Source: https://medium.com/radient-tech-blog/aws-lambda-and-the-node-js-event-loop-864e48fba49

The definitive Node.js handbook

You can get a PDF, ePub and Mobi version of this page for an easier reference, or to read it on your Kindle or tablet. This article is a getting started guide to Node.js, the server-side JavaScript runtime environment…. Source: https://medium.freecodecamp.org/the-definitive-node-js-handbook-6912378afc6e

An Overview of Buffers in Node.js

JavaScript introduced destructuring assignments as part of the 2015 edition of the JavaScript language spec. Destructuring assignments let you assign multiple variables in a single statement, making it much easier to pull values out of arrays and objects…. Source: http://www.thecodebarbarian.com/an-overview-of-buffers-in-node-js.html