Tag: Frontend
-
Exploring Typescript: Interfaces, Types & Classes
Posted on April 23, 2021, Level intermediate Resource Length medium
Typescript is a superset of Javascript, which means that all Javascript is syntactically valid Typescript. However, Typescript's power comes from its strict typing of objects. By Two Devs in a Pod.
Tags javascript app-development nodejs frontend web-development
-
Using Eleventy to host your blog
Posted on March 19, 2021, Level beginner Resource Length short
Blogs don't need to be dynamic. Technically, it doesn't make sense to pull data out of a database when a page is requested. Instead, it makes more sense to create the pages (HTML) beforehand (during the build process). By Sahil Parikh.
Tags app-development web-development frontend nodejs javascript
-
Authenticating Vuepress apps with Auth0
Posted on February 25, 2021, Level intermediate Resource Length short
Learn how to create your first VuePress site and add Authentication with Auth0. By Fikayo Adepoju.
Tags web-development frontend nodejs javascript app-development infosec
-
Angular routing guide: How to optimize app navigation
Posted on February 14, 2021, Level beginner Resource Length long
Angular is one of the most popular front-end frameworks, with 30% of developers preferring it for their projects. Angular is especially useful for large scale projects with many different views and components. By Ryan Thelin.
Tags angular nodejs frontend web-development app-development
-
Build a full-stack React app with zero configuration
Posted on February 3, 2021, Level intermediate Resource Length medium
Building a modern frontend application typically requires a lot of tooling. Think Babel, webpack, Parcel, Rollup etc. There's a reason module bundlers are so popular. By Ohans Emmanuel.
Tags react frontend web-development javascript app-development
-
How to structure CSS classes
Posted on December 30, 2020, Level beginner Resource Length medium
A clean and arranged CSS structure is hard to maintain in growing projects. Therefore it is important to think about how you would like to structure your classes right from the start so that you don't lose control. But if you start searching for methodologies and techniques to organize your CSS, you will soon realize that there are many ways to reach your goal! By Anne Debora Zimmermann.
Tags web-development css frontend app-development react
-
Microfrontends: expensive recipe for frontend applications
Posted on December 6, 2020, Level beginner Resource Length short
Microfrontends is a new trend in the frontend world however, the idea of being able to compose an application out of other independent applications is not new. By Sergio Martino.
Tags frontend microservices web-development app-development
-
From Vue to Nuxt: Server-side rendering in a nutshell
Posted on December 4, 2020, Level intermediate Resource Length long
Building front-end apps is no longer limited to taking care of what is happening only in the browser. We need to dig into the server-side as well if we want to provide reliable software. By Patryk Andrzejewski.
Tags frontend servers web-development app-development nodejs javascript
-
Angular push notifications: complete step-by-step guide
Posted on November 18, 2020, Level intermediate Resource Length medium
In this post, we are going to go through a complete example of how to implement Web Push Notifications in an Angular Application using the Angular Service Worker. By Angular University.
Tags angular web-development frontend app-development
-
How to keep NgRx state on refresh in Angular
Posted on November 16, 2020, Level intermediate Resource Length medium
It's a common requirement: persisting NgRx state in order to load it back up when your Angular application is restarted. This process of populating an empty object with domain data is called re-hydration. While it's common to persist the store data to the browser storage (mostly localStorage), you might also re-hydrate from a server-side cache. By Nils Mehlhorn.
Tags frontend nodejs angular javascript web-development
-
Angular security best practices
Posted on October 2, 2020, Level beginner Resource Length medium
This time, we dive straight into the modern Angular security best practices. By Liran Tal, Natalia Venditto.
Tags nodejs angular frontend web-development infosec
-
Writing AWS Lambda functions with Typescript and Webpack
Posted on September 29, 2020, Level beginner Resource Length short
Whether you use terraform, the terraform cdk or the aws cdk, you still need to compile your source code and make them into lambda deployment packages. By Julian.
Tags nodejs javascript serverless frontend web-development