Tag: Nodejs
-
Exercises in programming style: FP & I/O
Posted on August 10, 2019, Level intermediate Resource Length long
The article in which author explores one of the foundation of Functional Programming, I/O and how to cope with it. Written by Nicolas Fränkel a developer advocate with 15+ years experience consulting for many different customers.
Tags nodejs programming software functional-programming
-
Better software design with application layer use cases | Enterprise Node.js + TypeScript
Posted on August 9, 2019, Level intermediate Resource Length long
In this article, we explore how organizing application logic as Use Cases in the application layer helps to make large typescript projects easier to reason about. Written by Khalil Stemmler.
Tags nodejs javascript software infosec
-
Authorization: Securing HTTP APIs with RBAC rules
Posted on August 7, 2019, Level intermediate Resource Length long
Learn how to use Auth0's Role-Based Access Control (RBAC) feature to secure HTTP APIs with ease. An article by Bruno Krebs. This is the second, technical post in a 3-part series on focusing on Authorization. Stay tuned for the last part in this series, focusing on dynamic authorization.
Tags programming software nodejs web-development infosec
-
Creating a full-stack MERN app using JWT authentication
Posted on August 1, 2019, Level intermediate Resource Length medium
Praveen Kumar wrote this piece about authentication using JSON Web Token (JWT). The author demonstrates how he went about building a React frontend that talks to a .NET Core API Server. The authentication mechanism has been built on JWT on the .NET side of the project.
Tags nodejs javascript software web-development
-
Indexing and searching NuGet.org with Azure Functions and Search
Posted on July 30, 2019, Level intermediate Resource Length long
An article by Maarten Balliauw about parsing publicly available JSON data with Azure Functions (serverless). NuGet is the package manager for .NET. The NuGet client tools provide the ability to produce and consume packages.
Tags javascript web-development serverless nodejs azure
-
State management in React
Posted on July 29, 2019, Level intermediate Resource Length long
The State is an important concept in React that stores data and displays the behavior of a component. People choose different approaches for managing State in React. The article delve into the basics of React State and different ways to manage it. By Vrushali Bhosale.
Tags javascript web-development programming nodejs
-
Design patterns in Node.js: a practical guide
Posted on June 27, 2019, Level beginner Resource Length long
Fernando Doglio, Technical Manager @Globant, wrote this piece about design patterns in Node.js. Design patterns are part of the day to day of any software developer, whether they realize it or not.
Tags nodejs javascript software-architecture code-refactoring
-
Angular 8 brings smaller bundles, CLI APIs, alignment with the ecosystem
Posted on June 16, 2019, Level beginner Resource Length long
Stephen Fluin put together this article focusing on explaining what is exciting in the newest version of the Angular.
Tags angular nodejs javascript
-
CORS tutorial: guide to cross-origin resource sharing
Posted on May 13, 2019, Level intermediate Resource Length medium
In this article you will learn all about Cross-Origin Resource Sharing, the circumstances under which it is needed, the benefits it provides, and how to configure a Node + Express application to support CORS. Written by Steve Hobbs.
Tags nodejs javascript programming infosec
-
Full-Stack TypeScript with Ionic, Angular, NestJS
Posted on May 11, 2019, Level intermediate Resource Length long
Ely Lucas published series of articles focusing on developing with TypeScript and explained benefits of using TypeScript on both the client and server, shared an introduction to NestJS. Following this series you will insights how to build a simple app.
Tags nodejs javascript app-development
-
Vue.js app performance optimization: Lazy loading Vuex modules
Posted on March 18, 2019, Level intermediate Resource Length medium
Filip Rakowski wrote this blog series about optimizing Vue.js application for perfromance. He focuses on code splitting our state management -- Vuex modules.
Tags nodejs frontend web-development
-
Common API mistakes and how to avoid them
Posted on February 24, 2019, Level intermediate Resource Length long
Thomas Hunter II is author of this guide on hot topic how to avoid common API mistakes. The advice in this article applies to any API. However, some of the issues author considers are easier to encounter when the application is written in a dynamic language, such as JavaScript, versus a more static language, such as Java.
Tags javascript nodejs apis devops