Best of Web Development — January 2023
- 1
- 2
AWS 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
Community 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
Community 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
freeCodeCamp·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
DZone·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
ITNEXT·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
Trendyol 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
- 10
- 11
freeCodeCamp·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
- 13
freeCodeCamp·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.