Материалы по теме 'nextjs' | DevsDay.ru

IT-блоги Материалы по теме 'nextjs'

IT-блоги Материалы по теме 'nextjs'


Разработка dev.to 14 мая 2024 г. 22:05

Next.js 14 has come with many interesting changes, introducing the App Router as the main source where the program unwraps from. When you want to add a video to your website, you should start by creating a component. Let's make our own Video compone...... читать далее

webdev nextjs programming

Разработка dev.to 14 мая 2024 г. 19:07

I wrote a blog post the other day about how Next.js Middleware can be useful for working around some of the restrictions imposed by server components. This led to some fun discussions in the world about whether this was a reasonable approach or if Ne...... читать далее

react nextjs javascript webdev

Разработка dev.to 14 мая 2024 г. 18:18

O Next.js se destaca ao reunir diversos recursos e ferramentas gratuitas em um pacote bem estruturado, que pode ser facilmente compreendido e aplicado em suas aplicações de página única. Ele demonstra excelente desempenho em tarefas como otimização p...... читать далее

webdev nextjs react javascript

Разработка dev.to 14 мая 2024 г. 14:47

Deploying a Next.js App on AWS EC2 Ubuntu Server In this guide, we'll walk through the process of deploying a Next.js application on an AWS EC2 Ubuntu Server instance. We'll cover everything from setting up the server, installing necessary software,...... читать далее

aws ec2 nextjs ubuntu

Разработка dev.to 14 мая 2024 г. 9:59

Introduction If you're just tuning in, the first chapter detailed our approach to creating the SPA (Single Page Application) version of Flowdiver. We explained the reasoning behind our decisions and the challenges we encountered.👍 In this chapter...... читать далее

webdev casestudy typescript nextjs

Разработка dev.to 14 мая 2024 г. 9:19

Deploying a Next.js application on an Amazon EC2 instance gives you full control over the web server environment and is a great choice if you need more flexibility and scalability than what platform services like AWS Amplify offer. Here’s how to depl...... читать далее

nextjs aws ec2 abotwrotethis

Разработка dev.to 14 мая 2024 г. 3:30

Hai, teman-teman pengembang! 🎉 Di artikel ini, kita bakal ngebahas gimana cara gampang buat ngintegrasiin Google Analytics ke dalam proyek Next.js kalian. Jadi, kalo kamu pengen aplikasi web kamu makin canggih dan bisa ngelacak performa dengan lebi...... читать далее

nextjs google javascript

Разработка dev.to 13 мая 2024 г. 22:29

In this article, you will learn how redirect in next.js works under the hood by looking at the Next.js source code around redirect functionality. My approach: Start from the `import { redirect } from "next/navigation"' Back trace the r...... читать далее

javascript opensource nextjs react

Разработка dev.to 13 мая 2024 г. 21:35

CORS, Cross-origin resource sharing, is a policy implemented by the browsers. Origin First, let's understand what is origin. Origin is made up of the base url and the port. So https://abc.com, https://abc.com:4040 and https://cba.com are...... читать далее

cors node backenddevelopment javascript

Разработка dev.to 13 мая 2024 г. 11:10

While there are different authentication methods, Facial Authentication adds a higher level of security. In this tutorial, we'll integrate Facial Authentication with FACEIO to an employee dashboard sign-up page. At the end of this project, you can s...... читать далее

authentication nextjs webdev javascript

Разработка dev.to 13 мая 2024 г. 10:01

As developers at itselftools.com, we've accumulated a wealth of experience in building web applications, especially employing the robust features of Next.js combined with Firebase. Through developing over 30 projects, we've honed strategies for enhan...... читать далее

nextjs webdev performance seo

Разработка dev.to 13 мая 2024 г. 8:36

It's been over a year now since I took the effect pill and I'll probably never develop the same way as I did before. I love effect, and I am absolutely a power-user. But at my core, I am a front-end oriented developer. I care about things like bundl...... читать далее

webdev javascript effect typescript

Разработка dev.to 13 мая 2024 г. 7:32

I was working on a dashboard project recently and had the task of letting Discord users log in to the application and choose one of their servers to modify its properties. For someone who hadn't implemented authentication with NextJS before, I was c...... читать далее

javascript nextjs react nextauth

Разработка dev.to 13 мая 2024 г. 7:26

In Next.js, there are two main approaches to handle data fetching: Server Actions and API Routes. Both have their advantages and use cases, and the choice depends on your specific requirements and constraints. Server Actions: **Server Act...... читать далее

javascript nextjs react webdev

Разработка dev.to 13 мая 2024 г. 0:12

As developers, we are constantly seeking ways to enhance the performance of our applications to provide the best user experience possible. In traditional web applications, all the JavaScript, components, and libraries required are bundled together a...... читать далее

webdev nextjs performance react

Разработка dev.to 12 мая 2024 г. 22:04

The 90% of the websites uses some kind of authentication or authorization. Such as Facebook, Instagram, Google etc. In some point this kind of solution is inevitable to use in your website or service. This guide will show you Kinde's auth service, t...... читать далее

nextjs webdev kinde tutorial

Разработка dev.to 12 мая 2024 г. 16:32

Here's a simple way to add search 🔎 functionality in Next.js. First, you need to have a state for your search input and the list of elements. You can use React's useState for this. import { useState } from 'react'; export default function Home...... читать далее

tutorial nextjs search react

Разработка dev.to 12 мая 2024 г. 14:13

Developers wishing to contribute to the LBDflix open-source project might not be able to do so without explicit instructions about how to obtain the API key from The Movie Database (TMDB). In this article, we will guide developers through the proces...... читать далее

javascript opensource webdev nextjs

Разработка dev.to 12 мая 2024 г. 14:04

Hi! I spent most of my weekend trying to build a simple image-sharing social media web app for the Netlify Dev challenge. In this post, I will explain what I have learned while making this project. Most of this article is geared towards beginners, bu...... читать далее

nextjs tutorial netlify opensource

Разработка dev.to 12 мая 2024 г. 10:38

Nest.js team have an example in their official examples as With Docker - Multiple Deployment Environments, which managed in a Makefile. This example pushed it further, not only load different environments, but also make Makefile as an Orchestra, let...... читать далее

nextjs makefile docker automation