Tag: Javascript
-
Using design patterns in JavaScript - Ultimate guide
Posted on July 16, 2022, Level intermediate Resource Length medium
Design patterns are reusable, advanced, object-oriented solutions that we can use to address similar instances of everyday problems in software design. They are like blueprints for solving certain kinds of problems. By Nishani Dissanayake.
Tags programming web-development app-development javascript
-
Spinning with Swift
Posted on July 15, 2022, Level intermediate Resource Length long
Swift is a great language for creating Spin applications. This tutorial walks through the process of installing SwiftWasm, building a simple Wagi app, and then running it in Spin. Spin is a framework for building and running event-driven microservice applications with WebAssembly (Wasm) components. With Spin, we're trying to make it easier to get started with using WebAssembly on the server so that we can all take advantage of the security, portability, and speed WebAssembly provides when it comes to running microservices. By Matt Butcher.
Tags swiftlang programming web-development app-development javascript
-
6 best practices to improve Node.js security
Posted on July 6, 2022, Level beginner Resource Length medium
Today, Node.js is widely used in web and mobile applications, for it fills the gap between front-end and back-end applications. Unfortunately, increased usage of Node.js has opened new doors for attackers to exploit misconfigurations and vulnerabilities. By Lahiru Hewawasam.
Tags infosec app-development javascript web-development nodejs
-
How to abort API requests in JavaScript
Posted on July 5, 2022, Level intermediate Resource Length medium
Did you know that you can abort an API request in JavaScript? By aborting, I mean canceling a request before it is completed (before you get a response or before the request gets to the server). By Dillion Megida.
Tags app-development javascript web-development nodejs
-
Guidelines for choosing a Node.js framework
Posted on June 2, 2022, Level beginner Resource Length long
With lots of frameworks to choose from, and all those strong opinions, it's easy to feel a little lost. Comparing frameworks based on the features they list can be a headache, and features are only part of the picture. It would be awesome if you had a clear checklist you could evaluate Node.js frameworks against. By Simon Plenderleith.
Tags javascript how-to app-development learning cio agile management
-
Write object-oriented TypeScript well
Posted on May 9, 2022, Level beginner Resource Length long
TypeScript enables you to code using object-oriented principles and techniques, and Rider helps you write TypeScript more efficiently and easily. In this blog post, we'll look at the object-oriented features provided by the TypeScript language, and how to use Rider to implement them. By Rachel Appel.
Tags oop how-to programming javascript app-development
-
Why I don't miss React: a story about using the platform
Posted on May 7, 2022, Level intermediate Resource Length medium
My initial focus was to introduce Web Components as the new fundamental building block of all new DevTools features and UI. With the recently launched Recorder panel along with others, there are now large parts of DevTools that are almost exclusively web components. By Jack Franklin.
Tags web-development react app-development javascript browsers
-
How to start a project on Angular the right way
Posted on April 24, 2022, Level beginner Resource Length medium
How do you start a new project? ng new app and that's it! Not anymore. If you want to make maintenance and development easier you should be sure to follow these steps. By coding_indian.
Tags javascript web-development app-development restful json
-
How TypeScript design patterns help you write better code
Posted on March 29, 2022, Level beginner Resource Length long
TypeScript is a language that has seen a lot of exposure in the modern world of software engineering. Its powerful, strict type system reduces the likelihood of running into errors during runtime or hidden bugs in production due to the lack of strong types in, JavaScript, TypeScript's predecessor. By Eslam Hefnawy.
Tags react javascript web-development app-development
-
Dependency injection in JavaScript: Write testable code easily
Posted on March 25, 2022, Level beginner Resource Length medium
I struggled with two aspects of software development as a junior engineer: structuring large codebases and writing testable code. Test-driven development is such a common technique that is often taken for granted, but it's not always clear how code can be made fully testable. By Nate Anderson.
Tags nodejs javascript web-development frontend tdd
-
A complete guide to TypeScript's never type
Posted on March 12, 2022, Level intermediate Resource Length medium
TypeScript's never type is very under-discussed, because it's not nearly as ubiquitous or inescapable as other types. A TypeScript beginner can probably ignore never type as it only appears when dealing with advanced types, such as conditional types, or reading their cryptic type error messages. By Zhenghao.
Tags programming javascript app-development frontend nodejs
-
How to create your own Google Chrome extension
Posted on February 15, 2022, Level intermediate Resource Length medium
If you are a Google Chrome user, you've probably used some extensions in the browser. Have you ever wondered how to build one yourself? In this article, I will show you how you can create a Chrome extension from scratch. By Sampurna Chapagain.
Tags browsers javascript web-development app-development