current location:Home > Technical Articles > Web Front-end > JS Tutorial
- Direction:
- All web3.0 Backend Development Web Front-end Database Operation and Maintenance Development Tools PHP Framework Daily Programming WeChat Applet Common Problem Other Tech CMS Tutorial Java System Tutorial Computer Tutorials Hardware Tutorial Mobile Tutorial Software Tutorial Mobile Game Tutorial
- Classify:
-
- Vue.js or Nuxt.js?
- Vue.js is a user-friendly JavaScript framework that provides a powerful toolset for building user interfaces. Nuxt.js is based on Vue.js and adds server-side rendering, static website generation, and easy integration with various plugins. Continue reading this article to explore the benefits of both technologies and learn how to choose the right one based on your project needs. Vue.js Vue.js is a JavaScript framework for building user interfaces. It provides a declarative, component-based programming model using standard HTML, CSS, and JavaScript. Key features that make Vue.js efficient include: Declarative rendering: Vue usage
- JS Tutorial 791 2025-01-17 16:28:10
-
- Why this in JavaScript Differs from Other OOP Languages
- JavaScript's this keyword often causes confusion, especially for developers coming from languages like C#, Java, or Python where self consistently refers to the current object instance. Unlike those languages, JavaScript's this is dynamic, its value
- JS Tutorial 758 2025-01-17 14:34:12
-
- Flip Love Cards Purpose Animation Video with code
- JS Tutorial 861 2025-01-17 14:32:10
-
- Running Kokoro- ONNX TTS Model in the Browser
- Advances in artificial intelligence and machine learning have significantly expanded the boundaries of what is possible within the browser. Running text-to-speech (TTS) models directly in the browser opens new opportunities for privacy, speed, and convenience. In this blog post, we will explore how to run the Kokoro-82M ONNX TTS model in a browser using a JavaScript implementation. If you’re curious, you can test it out in my demo: Kitt AI Text-to-Speech . Why run TTS models in the browser? Traditionally, TTS models are executed on a server and require an Internet connection to send input and receive synthesized speech. However, with WebGPU and ONNX.js capabilities
- JS Tutorial 1062 2025-01-17 14:31:10
-
- Animation with New Logo Unlocked!!!!
- Interactive Channel Logo
- JS Tutorial 237 2025-01-17 14:30:15
-
- Unleashing AI Agent Potential with Tavily Search in KaibanJS
- In the dynamic landscape of AI development, access to timely and reliable information is paramount. KaibanJS, a cutting-edge JavaScript framework for building multi-agent systems, provides developers with the tools to create collaborative AI workflo
- JS Tutorial 326 2025-01-17 10:28:12
-
- How to build an Astro collection loader
- Astro's 1.14 release introduced the Content Layer API, extending content collections beyond local files. While Astro provides loaders for common data sources (RSS, CSV, etc.), creating custom loaders is straightforward. This guide demonstrates buil
- JS Tutorial 207 2025-01-17 08:35:09
-
- Daily JavaScript Challenge #JS- Sort an Array of Objects by Property
- Daily JavaScript Challenge: Sort Array of Objects by Property Hello everyone! ? Welcome to today’s JavaScript coding challenge. Let’s keep our programming skills sharp together! challenge Difficulty: Medium Topic: Arrays and Sorting describe Given an array of objects, each object contains two properties: 'name' (string) and 'age' (integer). Write a function that sorts the array in ascending order based on the 'age' property. If two objects have the same age, their original order is maintained in the sorted array. Ready to get started? https://www.dpcdev.com/ Copy this challenge Write your solution root
- JS Tutorial 889 2025-01-17 08:33:08
-
- How to Automate Kafka Topic Creation and Deletion, Using GitHub Actions and JavaScript
- Automating Kafka topic creation and deletion is crucial for developers using event-driven architectures. Manual management becomes impractical as your Kafka deployment scales, whether you're dealing with a growing system or implementing infrastructu
- JS Tutorial 794 2025-01-17 08:32:09
-
- How to use Astro with Hono
- Astro: A powerful web framework, my current favorite. Its versatility makes it ideal for a wide range of projects. However, for API development, Hono stands out. Hono: A simple, portable API framework with a user-friendly RPC system (resembling tRPC
- JS Tutorial 337 2025-01-17 08:31:10
-
- WebGPU tutorial: compute, vertex, and fragment shaders on the web
- WebGPU is a global technology that promises to bring cutting-edge GPU computing capabilities to the web, benefiting all consumer platforms using a shared code base. Although its predecessor, WebGL, is powerful, it seriously lacks compute shader capabilities, limiting its application scope. WGSL (WebGPU Shader/Compute Language) draws on best practices from areas like Rust and GLSL. As I was learning to use WebGPU, I came across some gaps in the documentation: I was hoping to find a simple starting point for using compute shaders to compute relevant data for vertex and fragment shaders. Single-file HTML for all the code in this tutorial is available at https://githu
- JS Tutorial 918 2025-01-17 08:30:10
-
- Fixing Nasty Bugs(Understanding Modals) - Part 1
- Debugging an Annoying Bug in a Next.js Project Sometime last week, I began working on a new project primarily built with Next.js and styled using the Shadcn component library. While building, I encountered a particularly annoying bug that not o
- JS Tutorial 389 2025-01-17 08:29:08
-
- string.indexOf() under the hood
- Hello, developers! Today, I tried to implement the indexOf() method from scratch. So far I've found the following: function myIndexOf(string, target, start = 0) { let l = target.length; //Adjust starting index if it is negative if (start < 0) { start = string.length start; } // Make sure the starting index is within the string length range if (sta
- JS Tutorial 184 2025-01-17 08:27:08
-
- The Perfect React-TypeScript Starter Template for your Vite projects
- Link: react-ts-starter This Vite-React starter kit is designed to jumpstart your next project! Show your appreciation by starring the GitHub repository if you find this helpful! ⭐ Here's what's included: Optimized project structure Pre-configured Ta
- JS Tutorial 523 2025-01-17 04:35:09
-
- Routing in Next.js – How to Use App Router in Your Next Apps
- Next.js 14's App Router revolutionizes route management with its file-based routing system within the app/ directory. This approach promotes better application structure, modularity, and performance. This guide outlines effective App Router implemen
- JS Tutorial 920 2025-01-17 04:33:12