Tag: js

Supercharge Your React App with Real-Time GraphQL Subscriptions & Apollo Client

Reading Time: 6 minutes Modern applications are getting more real-time. Notification updates, chat messaging applications, and financial market updates are all examples of real-time updates in online apps. With a feature called subscriptions, GraphQL makes it simple to create apps with low latency, and real-time updates. In this blog, we will discuss: Polling WebSockets GraphQL Subscriptions Apollo Client Features […]

How to Build a Rust WebAssembly Frontend App with Yew Framework?

Reading Time: 6 minutes While Rust is known for its backend web development capabilities, the introduction of WebAssembly (Wasm) has enabled the development of rich front-end apps in Rust. With the introduction of WebAssembly, it became possible to build frontend web apps in Rust, such as the one we just built, expanding development opportunities for developers. While all of […]

How to Write Unit Tests for Angular 15 Application Using Jasmine and Enforce Code Quality in a CI Workflow With Github Actions?

Reading Time: 10 minutes Refer to Part 2 of this blog, to know How to Write Unit Tests for Forms in an Angular 15 Application Using Jasmine? In this blog, we will cover: What is Unit Testing? About Angular About Jasmine Hands-on Conclusion What Is Unit Testing? As you develop applications, you write code and as the application features […]

How to build a communication microservice to send text messages using Twilio and Express?

Reading Time: 7 minutes Twilio is all about empowering communication in a convenient and timely manner. In this blog, we will demonstrate how to build a communication microservice to send text messages using Twilio and Express. Let’s get started! 🚀 Required Installations: Node.js: It is a JavaScript runtime environment that executes JavaScript code outside the browsers. Dotenv: This package […]

How to create test cases and start testing the JavaScript code using Mocha?

Reading Time: 9 minutes Better architecture results from well-tested code. It is always simpler to change and improve. Jest, Jasmine, Mocha, QUnit, Karma, Cypress, and other test-driven development tools are available for JavaScript, just as they are for any other programming language. In this blog, we will show you the full implementation of how to create test cases and […]

Create & Use Standalone Components in Angular 14

Reading Time: 8 minutes App development is now super-simple and quicker with the new features including standalone components in Angular 14. Because of the standalone components, the use of NgModules has now become optional. The Angular developer community strives to provide web developers with better versions of the TypeScript-based framework while also allowing them to stay on track with […]

Back To Top