current location:Home > Technical Articles > Web Front-end

  • Connecting the IoT and Node.js to IFTTT
    Connecting the IoT and Node.js to IFTTT
    Key Takeaways IFTTT’s Maker Channel allows developers to define triggers that are set off when they receive a HTTP request, expanding its usability for virtually any purpose, limited only by the creativity of the developer community. The Maker C
    JS Tutorial 684 2025-02-19 13:23:10
  • Creating a Web App with MATLAB and the MEAN Stack
    Creating a Web App with MATLAB and the MEAN Stack
    Core points MATLAB, a high-level language for technical computing, can be integrated with the MEAN stack to create powerful web applications. The MEAN stack consists of MongoDB, Express.js, AngularJS and Node.js, and when used in conjunction with MATLAB, it allows real-time data visualization on the web. The integration process involves using MATLAB's compute power to process data and generate results, which are then displayed on a web application built using a MEAN stack. JSONlab, an implementation of a free open source JSON encoder/decoder in the MATLAB language for converting MATLAB data to JSON
    JS Tutorial 743 2025-02-19 13:22:12
  • The JavaScript-Dependency Backlash: Myth-Busting Progressive Enhancement
    The JavaScript-Dependency Backlash: Myth-Busting Progressive Enhancement
    Core points Despite the rise of client frameworks such as AngularJS, progressive enhancement (PE) remains the best choice for solving web development problems such as extensive browser support, maintenance, and future developments of applications. PE is not for users who disable JavaScript, but about enhancing the user experience when certain JavaScript features are available. It doesn't make any assumptions about your audience like a client framework. PE critics often claim that this means supporting old browsers, but in fact, providing fallbacks to older browsers is an advantage of PE, rather than its primary goal. JavaScript frameworks can provide short-term benefits, but may lead to reduced visitors and long-term maintenance challenges. They stop firmly
    JS Tutorial 211 2025-02-19 13:21:09
  • How to Write Modular Code with Angular UI-Router & Named Views
    How to Write Modular Code with Angular UI-Router & Named Views
    Core points Angular UI Router is a powerful tool for managing different states in complex web applications, providing more control over each view than native AngularJS routing implementations. It uses dot notation to define child states within the parent state and uses absolute names to control where specific parts of the web application are displayed, enabling modular application design. UI Router allows developers to define a views object within $stateProvider that defines the name of the view and its path to the template. An unnamed view points to the parent state (called relative naming). Named views using @
    JS Tutorial 161 2025-02-19 13:19:14
  • Practical CoffeeScript: Making a Tic-Tac-Toe Game
    Practical CoffeeScript: Making a Tic-Tac-Toe Game
    CoffeeScript is a tiny little language that compiles to JavaScript. There is no interpretation at runtime since you write CoffeeScript, compile it to JavaScript and use the resulting JavaScript files for your app. You can use any JavaScript library
    JS Tutorial 544 2025-02-19 13:18:10
  • The Final Steps to Mastering JavaScript's 'this' Keyword
    The Final Steps to Mastering JavaScript's 'this' Keyword
    The basic usage of JavaScript this keyword has been explained in the previous article. The key point to this is the runtime context. However, when the context changes beyond expectations, the problem arises. This article will focus on this situation and how to solve it. Core points The this keyword in JavaScript points to the current execution context, and understanding it is essential for manipulating and interacting objects, especially when using object-oriented programming or using frameworks and libraries that rely on this. Common problems with this keyword include use in extracted methods, callback functions, and closures. These problems can be solved by explicitly binding this keyword to the correct object using the bind() method. ECMAS
    JS Tutorial 468 2025-02-19 13:17:09
  • Hints Creation with EnjoyHint
    Hints Creation with EnjoyHint
    EnjoyHint: A tool for creating interactive website tips EnjoyHint is a tool for creating interactive prompts on a website that helps users understand the functionality of web applications. It is free to use, supports highlighted areas of different shapes, allows prompt delays, and provides cross-browser support. Core functions: Free and easy to use: EnjoyHint is completely free and easy to use. Interactive Tips: Create interactive Tips that attract users' attention to guide users to understand the functions of the website. Custom shapes: Supports multiple highlight area shapes, flexible adaptation to different page elements. Delay settings: You can set the prompt delay time to optimize the user experience. Cross-browser compatibility: Compatible with mainstream browsers
    JS Tutorial 213 2025-02-19 13:16:10
  • Awesome Front-end Resources and CSS Animation Course
    Awesome Front-end Resources and CSS Animation Course
    Subscribe to our latest HTML/CSS channel newsletter and click here to subscribe. Here are our latest front-end resources: More than 20 free front-end learning resources provided by Louis Lazaris Donovan Huchinson's new CSS animation course Front-end learning resources As front-end developers, it is our responsibility to master the latest technologies and tools to make our final products easy to use, easy to access, and, why not, beautiful. Louis Lazaris shares with us an issue 11 list of over 20 free documents and guides he offers for front-end developers. This list is impressive, including functional programming, ES6, progressive web applications, auxiliary functions
    CSS Tutorial 396 2025-02-19 13:07:13
  • Building a Chat Application with SignalR
    Building a Chat Application with SignalR
    This tutorial demonstrates building a simple chat application using SignalR, an open-source library for ASP.NET developers. SignalR provides real-time web functionality, similar to Socket.IO for Node.js. While Socket.IO might be preferred with Java
    JS Tutorial 955 2025-02-19 13:04:11
  • Caching a MongoDB Database with Redis
    Caching a MongoDB Database with Redis
    This tutorial demonstrates how to boost the performance of a Node.js web service interacting with a MongoDB database by implementing a Redis caching layer. We'll build a "fastLibrary" application to illustrate the concept. Key Advantages o
    JS Tutorial 963 2025-02-19 13:00:15
  • How to Improve Loading Time with basket.js
    How to Improve Loading Time with basket.js
    This article explores the performance impact of scripts on modern web pages, using Facebook and Twitter as case studies, and introduces basket.js as a solution for optimizing script loading times. Script Loading Performance: Facebook and Twitter The
    JS Tutorial 849 2025-02-19 12:57:11
  • Introducing Vorlon.js: How to Use It to Debug Your Javascript Remotely
    Introducing Vorlon.js: How to Use It to Debug Your Javascript Remotely
    Vorlon.js: Your Remote JavaScript Debugging and Testing Companion Vorlon.js is an open-source, extensible tool empowering developers to remotely debug and test JavaScript code across various devices and browsers. Supporting up to 50 simultaneous con
    JS Tutorial 185 2025-02-19 12:55:10
  • Achieve 60 FPS Mobile Animations with CSS3
    Achieve 60 FPS Mobile Animations with CSS3
    Key Points Smooth mobile animation requires attention to the synthesis steps in the critical rendering path (CRP), and use properties such as transform and opacity to avoid increasing the burden of previous steps. Avoid using left, top, right, bottom attributes for animation transitions, as they will cause unsmooth animations; use transform attributes that affect the synthesis steps to let the browser determine the layer stability before the animation begins. To achieve a stable frame rate of 60 frames per second, use the GPU to render the animation, and promote the element to another layer through the will-change attribute, avoiding the browser handling layout rendering or drawing. This article was originally published in OutSystems. Thanks for the support
    CSS Tutorial 941 2025-02-19 12:54:19
  • A True Gaming Experience with the Gamepad API
    A True Gaming Experience with the Gamepad API
    Key Takeaways The Gamepad API, a proposed standard of the W3C, provides a consistent API across browsers for connecting gaming input devices like an Xbox Controller to a computer for browser-based experiences. The Gamepad API offers flexibility
    JS Tutorial 933 2025-02-19 12:52:11
  • Creating an Accessible Breakout Game Using Web Audio and SVG
    Creating an Accessible Breakout Game Using Web Audio and SVG
    This article, part of a Microsoft web development series, details the creation of an accessible Breakout game using WebGL, Web Audio, and SVG, demonstrating that visually engaging games can be fully inclusive. The author, a Babylon.js co-author, was
    JS Tutorial 392 2025-02-19 12:50:11

Tool Recommendations

jQuery enterprise message form contact code

jQuery enterprise message form contact code is a simple and practical enterprise message form and contact us introduction page code.
form button
2024-02-29

HTML5 MP3 music box playback effects

HTML5 MP3 music box playback special effect is an mp3 music player based on HTML5 css3 to create cute music box emoticons and click the switch button.

HTML5 cool particle animation navigation menu special effects

HTML5 cool particle animation navigation menu special effect is a special effect that changes color when the navigation menu is hovered by the mouse.
Menu navigation
2024-02-29

jQuery visual form drag and drop editing code

jQuery visual form drag and drop editing code is a visual form based on jQuery and bootstrap framework.
form button
2024-02-29

Organic fruit and vegetable supplier web template Bootstrap5

An organic fruit and vegetable supplier web template-Bootstrap5
Bootstrap template
2023-02-03

Bootstrap3 multifunctional data information background management responsive web page template-Novus

Bootstrap3 multifunctional data information background management responsive web page template-Novus
backend template
2023-02-02

Real estate resource service platform web page template Bootstrap5

Real estate resource service platform web page template Bootstrap5
Bootstrap template
2023-02-02

Simple resume information web template Bootstrap4

Simple resume information web template Bootstrap4
Bootstrap template
2023-02-02

Cute summer elements vector material (EPS PNG)

This is a cute summer element vector material, including the sun, sun hat, coconut tree, bikini, airplane, watermelon, ice cream, ice cream, cold drink, swimming ring, flip-flops, pineapple, conch, shell, starfish, crab, Lemons, sunscreen, sunglasses, etc., the materials are provided in EPS and PNG formats, including JPG previews.
PNG material
2024-05-09

Four red 2023 graduation badges vector material (AI EPS PNG)

This is a red 2023 graduation badge vector material, four in total, available in AI, EPS and PNG formats, including JPG preview.
PNG material
2024-02-29

Singing bird and cart filled with flowers design spring banner vector material (AI EPS)

This is a spring banner vector material designed with singing birds and a cart full of flowers. It is available in AI and EPS formats, including JPG preview.
banner picture
2024-02-29

Golden graduation cap vector material (EPS PNG)

This is a golden graduation cap vector material, available in EPS and PNG formats, including JPG preview.
PNG material
2024-02-27

Home Decor Cleaning and Repair Service Company Website Template

Home Decoration Cleaning and Maintenance Service Company Website Template is a website template download suitable for promotional websites that provide home decoration, cleaning, maintenance and other service organizations. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-05-09

Fresh color personal resume guide page template

Fresh color matching personal job application resume guide page template is a personal job search resume work display guide page web template download suitable for fresh color matching style. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-29

Designer Creative Job Resume Web Template

Designer Creative Job Resume Web Template is a downloadable web template for personal job resume display suitable for various designer positions. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28

Modern engineering construction company website template

The modern engineering and construction company website template is a downloadable website template suitable for promotion of the engineering and construction service industry. Tip: This template calls the Google font library, and the page may open slowly.
Front-end template
2024-02-28