Found 217 Articles for Javascript Library

Tensorflow v/s Tensorflow.js v/s Brain.js

Jay Singh
Updated on 31-Jul-2023 19:17:42

459 Views

Machine learning, which enables programmers to create intelligent systems that can pick up new information and adapt to it, is a technique that is increasingly used in modern software development. It could be difficult to decide which machine learning framework or library to use with so many options available. Three well-known machine learning frameworks—TensorFlow, TensorFlow.js, and Brain.js—will be compared and contrasted in this article. We'll go through the main traits, benefits, applications, and restrictions of each framework. At the conclusion of this essay, you will have a better understanding of which framework is ideal for your particular use case and ... Read More

How to remove controls of a text canvas using Fabric.js?

Mohit Panchasara
Updated on 26-Jul-2023 12:48:36

196 Views

Fabric.js is a powerful tool written in JavaScript that makes it easier to build applications with interactive and dynamic graphics using HTML5 canvas. It offers many useful features, including the ability to add controls such as resizing and rotation handles to objects on the canvas. Sometimes, though, you might want to take away these controls from certain objects, like text, to limit what users can do. In this article, we'll show you how to remove controls from a text canvas using Fabric.js, using a simple example that you can follow along with. How to Remove Controls of a Text? To ... Read More

Functional Programming with JavaScript Libraries: Ramda, Lodash, and Immutable.js

Mukul Latiyan
Updated on 25-Jul-2023 13:56:13

107 Views

Functional programming is a popular paradigm in JavaScript development, emphasising immutability, pure functions, and higher-order functions. It promotes writing clean, concise, and maintainable code. To facilitate advanced functional programming techniques, several JavaScript libraries have emerged, providing powerful tools and utilities. In this article, we will explore three such libraries: Ramda, Lodash, and Immutable.js. We will dive into code examples, explain their features, and showcase the benefits they bring to functional programming in JavaScript. Ramda: Functional Programming made Easy Ramda is a powerful library that promotes functional programming in JavaScript. It focuses on immutability and provides a wide range of functions ... Read More

Top 10 Javascript Libraries for Machine Learning and Data Science

Priya Mishra
Updated on 11-Jul-2023 13:05:00

211 Views

Javascript has grown in popularity in recent years due to its large number of libraries used for both front-end and back-end development, however, Javascript has also evolved to meet the needs of machine learning and data scientists. Javascript libraries provide us with a comprehensive range of techniques and tools that simplify complex machine-learning tasks such as data analysis, pattern recognition, and predictive modeling. In this article, we will look at the top ten Javascript libraries for machine learning and data science. Top 10 Javascript Libraries for Machine Learning and Data Science Below are the top 10 Javascript libraries for machine ... Read More

Using Material Bottom Tab Navigator in Snack

Saba Hilal
Updated on 02-May-2023 15:30:39

276 Views

Tabs are created to implement multipage views in apps. Tabs are often placed on the top or at the bottom of the screen. Some libraries permit making tabs in mobile apps. Tabs can use icons instead of text type of labels. In this article, the React native and javascript code is shown with two different examples where in the first example, createMaterialBottomTabNavigator from '@react-navigation/material-bottom-tabs' is used to make tabs and then rendering these as labels. In the other example, the icons from Ionicons are used to make tabs and then render these on the screen of the device. Algorithm-1 Step ... Read More

Using The Audio in Snack

Saba Hilal
Updated on 02-May-2023 15:27:55

218 Views

Audio is a common component of mobile apps. Audio can be used in apps in many ways. Audio can be selected from the mobile, it can be used from any online link, or can be included in the project itself as local audio. Expo-av can be used in all these cases for integrating sound into mobile apps. In this article, the React native and javascript code is shown with three different examples where in the first example, an audio file is browsed from the device. In the second example, the audio is taken from an online link and mixed with ... Read More

Using Cards in Snack

Saba Hilal
Updated on 02-May-2023 15:23:20

200 Views

Sometimes, the task is to show a small bounded area with some text, picture, or colors and to retrieve more information from it later or to perform some actions on selecting that item. For this Card from react-native-paper can be used. More than one Card can also be used on a Screen, integrating it as a list item and it can be made clickable. In this article, the React native and javascript code is shown with two different examples where first a single card with an Image is used in an app, and in the second example multiple cards are ... Read More

Using Tabs in Snack

Saba Hilal
Updated on 02-May-2023 15:11:31

144 Views

Tabs are created to implement multipage views in apps. Tabs are often placed on the top or at the bottom of the screen. Some libraries permit making tabs in mobile apps. Tabs can also be made using simple components like buttons. In this article, the React native and javascript code is shown with two different examples where in the first example, the buttons are used to make tabs. In the other example, the createMaterialTopTabNavigator from '@react-navigation/material-top-tabs' is used to make tabs and then render these on the screen of the device. Algorithm 1 Step 1 − Import Text, View, StyleSheet, ... Read More

Text to Speech Examples in Snack

Saba Hilal
Updated on 02-May-2023 15:04:35

332 Views

Text to Speech is an important area where the written language text is converted into speech form. For using Text to Speech conversion, functionality from expo-speech can be used. In this article, the React native and javascript code is shown with two different examples, where in the first example while showing the text-to-speech conversion, the pitch and speed change are shown along with the original conversion. In the second example, the pause, resume, and stop methods are demonstrated and the user can also enter the text at the time of conversion. Algorithm-1 Step 1 − Import Text, View, StyleSheet, and ... Read More

Using the Slider Examples in Snack

Saba Hilal
Updated on 02-May-2023 14:59:17

234 Views

Sometimes, the task is to increment a number in a given range. For this different types of Sliders can be used. Different libraries permit using sliders in mobile apps. In this article, the React native and javascript code is shown with two different examples where in the first example, the '@react-native-community/slider' component “Slider” is used. In another example, the circular slider called the ArcSlider is used from "rn-arc-slider" to make a slider and then render it on the screen of the device. Example 1: Using Slider from 'react-native-community/slider' to print table of a number. Algorithm Step 1 − Import ... Read More

1 2 3 4 5 ... 22 Next
Advertisements