Best of Web DevelopmentJanuary 2023

  1. 1
    Article
    Avatar of communityCommunity Picks·3y

    Three.js Journey — Learn WebGL with Three.js

    Learn WebGL with Three.js by Bruno Simon will teach you the secrets to create the coolest WebGL websites with three.js.

  2. 2
    Article
    Avatar of awstipAWS Tip·3y

    MERN stack for Web Development

    MERN stack comprises a collection of four frameworks used to develop full-stack javascript solutions for rapid, scalable, and secure applications. All frameworks are open-source and have room for designing flexible and scalable applications. Ease of learning the frameworks as they follow similar patterns and support quality collaboration.

  3. 3
    Article
    Avatar of communityCommunity Picks·3y

    Why Golang is a Good Choice for Developers in 2023

    Go (or Golang) has emerged as a powerful and efficient option for developers. In recent years, Go is becoming more popular and more and more companies have used Go in their production systems. Uber, Netflix, Dropbox, and Soundcloud use Go to power their distributed data pipeline, which processes over a billion events per second.

  4. 4
    Article
    Avatar of communityCommunity Picks·3y

    Implementing the WebSocket protocol from scratch using Node.js

    The WebSocket protocol has become the de-facto standard for real-time communication on the web. It's hard to see this kind of stuff online, especially if we’re talking about something that's done with no third-party libraries or frameworks which is compatible with the browser and the protocol.

  5. 5
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How to Become a Better Web Developer in 2023

    To be a great web developer, you must learn many skills and techniques and hone your coding abilities. If you want to become an expert in front-end and back-end programming, your goal could be to become a full-stack web developer. There are a few different approaches to determine your area of interest within web development.

  6. 6
    Article
    Avatar of dzDZone·3y

    7 Must-Have Tools for JavaScript Pros

    The powerful laptop, the blazing-fast Internet connection, and the smart IDE can impact the results we produce even bigger. Join the DZone community and get the full member experience. Join for Free Once, the great American president Abraham Lincoln said: “Give me six hours to chop down a tree and I will spend the first four sharpening the axe’s axe.

  7. 7
    Article
    Avatar of itnextITNEXT·3y

    How I Made My App 2.4x Faster Switching to Svelte

    Svelte Kit makes it intuitive to be fast for server side rendering, lazy loading, pre-render, and less javascript Origin. It's a small NX project with a couple of Angular/Firebase applications. The 100s are a rewrite of the app using SVELte Kit.

  8. 8
    Article
    Avatar of trendyoltechTrendyol Tech·3y

    Vite: Webpack Killer or Something Else?

    Vite is a build tool and development server for modern JavaScript applications. It uses the native ES modules feature in the browser to handle the imports of your JavaScript files. Vite also has a plugin system that allows you to add additional functionality, such as TypeScript support or JSX transpilation.

  9. 9
    Article
    Avatar of medium_jsMedium·3y

    100 Days of Python

    100 Days of Python will be exploring the Python programming language over the next 100 days. We will be starting from the complete beginner level to make sure people without any programming background can get started and follow along.

  10. 10
    Article
    Avatar of growwenggGroww Engineering·3y

    Objects in Javscript

    An object aggregates multiple values and allows you to store and retrieve those values by name. An object is an unordered collection of properties, each of which has a name and a value. Objects are mutable and manipulated by reference rather than by value.

  11. 11
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How Functions Work in JavaScript – JS Function Code Examples

    JavaScript is a widely-used programming language that is essential for web development. It is a high-level, interpreted language used on the client side, meaning it runs in the user's web browser. You can use it to create web and mobile applications, browser extensions, and other software.

  12. 12
    Article
    Avatar of vercelVercel·3y

    Building a fast, animated image gallery with Next.js – Vercel

    Building a fast, animated image gallery with Next.js Monday, January 9th 2023 Engineering Monday. The biggest challenge was handling hundreds of high quality images with large source file sizes.

  13. 13
    Article
    Avatar of freecodecampfreeCodeCamp·3y

    How to Submit a Form with JavaScript – JS Submit Button Example

    To submit a form using JavaScript, you must first create the form and add distinctive, specific attributes to the input fields. You will use these attributes to retrieve the data when the user submits and then calls a function to handle validations. This is the entire JavaScript code: l See the Pen Form Submission JS.