Tag: Nodejs
-
7 ways to remove duplicates from an array in JavaScript
Posted on February 19, 2020, Level beginner Resource Length medium
Jayanth Babu wrote this article about how to remove duplicates from an array in JavaScript. It's a common use case in many projects to need to remove duplicates from array in JavaScript. For interviews, it's a common coding challenge to practice for everyone.
Tags nodejs javascript web-development programming
-
TypeScript's secret parallel universe
Posted on January 27, 2020, Level beginner Resource Length medium
Florian Reuschel put together this tutorial for new TypeScript users. He focuses on one of the most underreported topics in the TypeScript tutorial world: the type scope.
Tags javascript web-development nodejs
-
Successfully porting complex data-driven frontends to React with GraphQL
Posted on January 25, 2020, Level intermediate Resource Length short
When porting existing code to React, there is a couple of things to look out for. This article shares my experience while porting a section of a Rails app to React and consuming data through GraphQL. By Neel Barthel.
Tags react nodejs javascript apis web-development
-
Building Angular CLI projects with Github Actions
Posted on January 24, 2020, Level intermediate Resource Length medium
The Angular CLI provides all the built tools out of the box to create, build, and test Angular applications. In this post, we will build a continuous integration (CI) build system using Github Actions. By Cory Rylan.
Tags angular nodejs javascript
-
Introducing Mocking Hans - An open source tool for creating fake APIs
Posted on January 9, 2020, Level intermediate Resource Length medium
An article by Kevin about Hans. Hans is a small Node application for faking APIs - but not just a single REST API using HTTP. It allows for creating multiple APIs using different ports and protocols (like native WebSockets or even GraphQL).
Tags apis nodejs restful web-development
-
Build and secure a GraphQL server with Node.js
Posted on January 7, 2020, Level beginner Resource Length long
A tutorial from the pen of Roy Derks. Learn how to handle authentication and authorization of a GraphQL server using Node.js and JWTs.
Tags javascript infosec web-development nodejs nosql
-
Pivotal Web Services, SSL, and a Custom Domain
Posted on January 6, 2020, Level beginner Resource Length medium
Pivotal Web Services (PWS) is a great place to set up push button deployments. It's cheaper than Heroku and has some great features. By Austin.
Tags web-development serverless nodejs java kotlin programming
-
HTML, CSS and Go: Vugu premise and example
Posted on December 28, 2019, Level intermediate Resource Length medium
An article by Brad Peabody about Vugu andd WwebAssembly. Vugu is a Go library that makes it easy to write HTML markup and Go code which is compiled and run in the browser using WebAssembly.
Tags javascript frameworks nodejs web-development miscellaneous
-
Safer code with container types (Either and Maybe)
Posted on December 27, 2019, Level beginner Resource Length medium
Joan Llenas put this article together about safer types with TypeScript. There are only two hard things in Computer Science: null and undefined.
Tags javascript nodejs web-development programming how-to
-
Const assertions in literal expressions in TypeScript
Posted on December 17, 2019, Level beginner Resource Length medium
With TypeScript 3.4, const assertions were added to the language. A const assertion is a special kind of type assertion in which the const keyword is used instead of a type name. By Marius Schulz.
Tags javascript nodejs programming web-development
-
How we 30x'd our Node parallelism
Posted on December 13, 2019, Level interemediate Resource Length long
What's the best way to safely increase parallelism in a production Node service? What if your application is a bank integration service? That's a question author's team needed to answer a couple of months ago. By Evan Limanto.
Tags software-architecture nodejs cloud cio containers kubernetes
-
Clarifying RxJS Observables under 5 minutes
Posted on December 9, 2019, Level intermediate Resource Length medium
Observables are the essential elements of the Angular framework; you can't do too many things without using them. An article by Gábor Soós.
Tags nodejs javascript angular nodejs