Remove javascript-tutorial importing-modules-and-dependencies-in-javascript
article thumbnail

Importing Modules and Dependencies in JavaScript

Angularjs | Reactjs | jQuery | Nodejs tutorials

This article will discuss several approaches to importing JavaScript modules into an application. JavaScript contributes to the development of complex web applications. We have to organize the codebase into several modules or dependencies, As projects get larger and more complex.

article thumbnail

Kotlin Multiplatform’s three levels of testing with Kotest

Xebia

Kotlin Multiplatform allows us to share common Kotlin code between various platforms, including JVM, JavaScript, iOS, Android, and native. A Kotlin Multiplatform project contains multiple modules called source sets to enable such code sharing. These modules are structured in a hierarchy to provide any level of code sharing.

Testing 130
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

article thumbnail

Top 15 Awesome Tutorials To Learn AngularJS

NeverFriday

Here are the top 25 awesome tutorials to learn AngularJS: 1. The Official AngularJS Tutorial. In this tutorial provided by the team that developed AngularJS, you will learn how to create templates, components, and how to work with two-way data binding. Dependency injection is also introduced in the tutorial.

article thumbnail

JavaScript immediately invoked function expressions

CircleCI

This tutorial covers: When to use IIFEs instead of traditional functions. JavaScript Immediately Invoked Function Expressions (IIFEs) are functions that are executed when they are initialized. In this tutorial, you will learn about use cases for IIFEs and the benefits of using them over traditional functions. Prerequisites.

Testing 52
article thumbnail

Testing React components with Cypress

CircleCI

This tutorial covers: Creating and setting up a React application. This tutorial illustrates the differences between end-to-end (E2E) and component testing, and what to consider when using these methods. Sound knowledge of JavaScript and React. Our tutorials are platform-agnostic, but use CircleCI as an example.

Testing 98
article thumbnail

Creating snapshots in Jest for testing React applications

CircleCI

This tutorial covers: Setting up Jest snapshots. Automated tests are especially important in large applications that have lots of moving parts. In this tutorial, I will lead you through using Jest , a JavaScript testing framework, to create snapshots for testing a simple React web application. Prerequisites.

Testing 52
article thumbnail

Publishing a Python package

CircleCI

In this tutorial, we will build a simple Python package and create a continuous integration (CI) pipeline for it. If you are using a popular programming language like JavaScript or Python there will be tools available for publishing your open source packages. For JavaScript, you can use Node Package Manager ( NPM ).