Browse By

React Optimizing Performance

Internally, React uses several clever techniques to minimize the number of costly DOM operations required to update the UI. For many applications, using React will lead to a fast user interface without doing much work to specifically optimize for performance. Nevertheless, there are several ways

ngUpgrade

NgUpgrade HOWTO Guide

NgUpgrade is a library put together by the Angular team, which we can use in our applications to mix and match AngularJS and Angular components and bridge the AngularJS and Angular dependency injection systems. In this article we will look at what it is and

.NET Core 2.0

.NET Core 2.0 released

The first public release of .NET Core 2.0. You can develop .NET Core 2.0 apps with Visual Studio 2017 Preview 15.3, Visual Studio for Mac or VS Code. ASP.NET Core 2.0 Preview 1 is also releasing today and takes advantage of the improvements in .NET

azure-logo

Azure Application Architecture Guide

This guide presents a structured approach for designing applications on Azure that are scalable, resilient, and highly available. It is based on proven practices that we have learned from customer engagements. Introduction The cloud is changing the way applications are designed. Instead of monoliths, applications

nest_framework_logo

Nest – A Node.js framework build on Typescript

Nest is a powerful web framework for Node.js, which helps you effortlessly build efficient, scalable applications. It uses modern JavaScript, is built with TypeScriptand combines best concepts of both OOP (Object Oriented Progamming) and FP(Functional Programming). It is not just another framework. You do not

Prepack_logo

Prepack – AOT tool

Prepack is a tool that optimizes JavaScript source code: Computations that can be done at compile-time instead of run-time get eliminated. Prepack replaces the global code of a JavaScript bundle with equivalent code that is a simple sequence of assignments. This gets rid of most

Angular4 debugging

“ Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it. ” — Brian Kernighan In this article Maxim Koretskyi guides us though the

Free_Ebook_ASP_NET_Core

ASP.NET Core Succinctly – Free EBook

In ASP.NET Core Succinctly, seasoned authors Simone Chiaretta and Ugo Lattanzi update you on all the advances provided by Microsoft’s landmark framework. By learning the foundations of the library and understanding the new versions of ASP.NET MVC and Web API, you’ll be equipped with everything

primeng logo

PrimeNG 4.0 Final Release

PrimeTek is pleased to announce the 4.0-Final release of PrimeNG featuring 100+ enhancements over the previous 2.x version.  PrimeNG is a collection of rich UI components for Angular 2+. PrimeNG is a sibling of the popular JavaServer Faces Component Suite, PrimeFaces. All widgets are open source and

Create React App with an Express Backend

Create React App is an awesome way to get started with React. It creates a project structure for you, all set up and ready to go. You get to skip the configuration of Webpack and Babel, and get right down to writing your app. In this