Hopp til hovedinnhold

Innhold om JavaScript

Totalt 92 innlegg

Side 1 av 7

MSW på 1, 2, 3

JavaScript, Typescript
Artikkel (3 min)
Fra Sindre Moldeklev

Kom i gang med mocking av API-endepunkter på 1, 2, 3 med MSW

🔥 Prettier Config considered harmful

JavaScript
Artikkel (4 min)
Fra Kristofer Giltvedt Selbekk

The best prettier config is no config at all, and I'm about to tell you why

Get typesafe APIs with Zod and ChatGPT

JavaScript
Artikkel (3 min)
Fra Kristofer Giltvedt Selbekk

Want typesafe APIs, but don't feel like writing them yourself? I have a trick up my sleeve I want to share.

Slik lager du et bibliotek som støtter React Server Components

React, Utvikling, JavaScript
Artikkel (6 min)
Fra Marcus Haaland

React server components vinner popularitet og det er avgjørende for komponentbiblioteker å støtte det for å holde tritt. Hvordan støtter du det?

How to support React Server Components in your library

React, Utvikling, JavaScript
Artikkel (6 min)
Fra Marcus Haaland

React server components is winning popularity, and it's crucial for component libraries to support it to stay relevant. How do you support it?

Du trenger ikke Storybook for å lage en playground

React, JavaScript, Utvikling
Artikkel (4 min)
Fra Marcus Haaland

Storybook tilbyr en rå, interaktiv playground for å teste ulike props, men det kommer med en pris: med det følger en tvangstrøye av et design. Ved å kombinere React Live og litt strengkonkatenering kan du lage en løsning du har full kontroll over, samtidig som du gir brukerne dine en effektiv måte å få oversikt over en komponents muligheter.

You don't need Storybook to make a playground

React, JavaScript, Utvikling
Artikkel (5 min)
Fra Marcus Haaland

Storybook offers an awesome, interactive playground to test different props, but at a price: with it comes a straitjacket of a design. By combining React Live and some string concatenation, you can create a solution that you have full control over, while giving your users an efficient way to get an overview of a component's capabilities.

Gjør nettsiden din levende med CSS-transitions

JavaScript, CSS, React, Design, UX
Artikkel (6 min)
Fra Marcus Haaland

Nettsider med animasjon får litt personlighet, og det skal lite til for å oppnå det. Her er en guide til bruk av CSS-transitions.

Azure Application Insights using Javascript SDK in Next.js

JavaScript, React
Artikkel (3 min)
Fra Toralf Frich

Do you need help with the Javascript SDK for Application Insights? Look no further! This guide will help you go from zero to hero in no time 📈

How to create a simple Custom Server in Next.js

JavaScript, React
Artikkel (3 min)
Fra Toralf Frich

Do you need help with setting up a simple custom server in Next.js? This trick will get you a long way!

Hvilket problem prøver Webpack å løse?

JavaScript, Utvikling
Artikkel (4 min)
Fra Marcus Haaland

Hva er egentlig greia med Webpack? I samme åndedrag hører du gjerne “loaders”, “plugins” og annen babbel. Hvilket problem er det Webpack egentlig prøver å løse?

A smarter way of using T[keyof T]

JavaScript
Artikkel (3 min)
Fra Miina Lervik

In this article I will show how you can infer the value of a property in any object with generic typescript. This articles assumes you are already familiar with generics in typescript.

Migrating your data with sanity exec

JavaScript
Artikkel (9 min)
Fra Kristofer Selbekk

Ever wished you chose a slightly different data structure for your structured content? Let's learn how to fix it!

TypeScript Decoders and Where to Find Them

JavaScript
Artikkel (12 min)
Fra Tarjei Skjærset

TypeScript is fantastic, but without Json Decoders, your code (probably) isn't type safe.

Tagged template literals

JavaScript
Artikkel (3 min)
Fra Mats Byrkjeland

Template literals (`My name is ${name}`) have existed in JavaScript for a while. There is a good chance that it is your preferred way to concatenate strings in JavaScript. A slightly lesser known sub-feature of this is the tagged template literal (myTag`My name is ${name}`). What is it and why should you care?