Tag: Javascript
-
Combine functional and object oriented programming
Posted on July 29, 2021, Level intermediate Resource Length short
There are many languages that support both functional and object-oriented programming (OOP) such as Javascript, C#, Scala ... In my case, learning functional programming (FP) from OOP experience creates some confusion on how to best use functional and OOP together. By Thang Le.
Tags programming software javascript app-development functional-programming
-
How to use IndexDB to manage state in JavaScript
Posted on July 21, 2021, Level intermediate Resource Length medium
This article explains how to use IndexedDB to store state in a typical client-side JavaScript application. IndexedDB has good cross-browser support and offers at least 1GB of storage. By Craig Buckler.
Tags database javascript frontend web-development
-
Top 5 auth solutions for React Native
Posted on June 29, 2021, Level beginner Resource Length long
Get to know 5 auth providers for React Native to get a head start with your Authentication flow. By Viduni Wickramarachchi.
Tags infosec react javascript app-development frontend
-
What is Recursion? A recursive function explained with JavaScript code examples
Posted on June 27, 2021, Level beginner Resource Length long
Recursion is a technique used to solve computer problems by creating a function that calls itself until your program achieves the desired result. By Nathan Sebhastian.
Tags programming nodejs javascript app-development learning
-
Real-world CSS vs. CSS-in-JS performance comparison
Posted on June 10, 2021, Level advanced Resource Length long
CSS-in-JS has taken a solid place in front-end tooling, and it seems this trend will continue in the near future. Especially in the React world. By Tomas Pustelnik.
Tags css frontend javascript web-development ux performance
-
Best practices for Node.js security
Posted on May 15, 2021, Level beginner Resource Length medium
Like any other programming language or framework, Node.js is susceptible to every type of web app exposure. Although the basis of Node.js is secure, third-party packages may need more security standards to safeguard your web app. The study says that 14% of the NPM (Node Package Manager) ecosystem is impacted and 54% of the NPM ecosystem is about to be impacted indirectly. By Kiran Malvi.
Tags infosec web-development nodejs javascript
-
WebRTC video calls implemented in React
Posted on May 13, 2021, Level intermediate Resource Length long
Having been implementing WebRTC in production systems for almost a year now, we wanted to add this resource to the documentation available for the architecture of WebRTC videocalls. Partly to share our knowledge and common gotchas, and also to give back to the web standard that has supported us so well. By yown.it.
Tags app-development web-development frontend react javascript
-
Why you should not use webpack
Posted on May 9, 2021, Level beginner Resource Length medium
Webpack is one of the most popular bundlers around today. Tons of production apps and frameworks, such as Next.js, Create React App, and more, use it for bundling and building. Additionally, it has the largest library of plugins out of any bundler. However, times have changed since Webpack's inception, and now it is not the best tool for lots of cases. By AsyncBanana.
Tags nodejs javascript performance containers cicd
-
Experiments in concurrency 3: Event loops
Posted on May 3, 2021, Level intermediate Resource Length medium
An event loop is a loop that runs your code and does things based on some events. That's vague, I know, but it'll become clearer as we go. By Shalvah.
Tags app-development javascript php
-
Continuous integration for React applications using Jest and Enzyme
Posted on May 2, 2021, Level beginner Resource Length short
React pairs nicely with Redux, which enables managing the data that React needs to render interfaces. Redux offers a predictable way to structure and update the data in those frontend applications. In this tutorial, we will explore how to write tests for an existing React and Redux application. By Kevin Ndung'u.
Tags devops react app-development cicd javascript
-
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
-
Redux best practices for creating scalable API architectures
Posted on March 26, 2021, Level beginner Resource Length medium
We often get confused about fetching data and how to connect our frontend application with the backend and we always end up reading tonnes of articles. Stop fetching data in Redux actions. By Shrey Vijayvargiya.
Tags apis react javascript web-development