Tagging
Try bookmarklet. Easy tagging.
Do you want to delete?
Do you want to modify?
  • LINKTAG
  • New
  • Tag
  • Comment
Sign in
it dev nextjs jotai store

Using Jotai only as an external provider-less store compared to Zustand · pmndrs/jotai · Discussion #2444

Using Jotai only as an external provider-less store compared to Zustand
wono | discuss |
it dev nextjs jotai issue

Next 14: Specified module format (CommonJs) is not matching the module format of the source code (EcmaScript Modules) · pmndrs/jotai · Discussion #2579

Next 14: Specified module format (CommonJs) is not matching the module format of the source code (EcmaScript Modules)
wono | discuss |
it dev nextjs jotai example

next.js/examples/with-jotai at canary · vercel/next.js

The React Framework. Contribute to vercel/next.js development by creating an account on GitHub.
wono | discuss |
생활 자동차 시동 점화플러그

점화플러그 역할, 고장 증상, 교체시기 및 비용까지 놓치면 손해!

[BY 막차폐차] 자동차는 심장이라고 불리우는 엔진, 그리고 미션을 비롯하여 상당히 많은 부품과 전선, ...
wono | discuss |
생활 자동차 시동 점화플러그

자동차 고장前 나타나는 증상들

★ 70년후반 자동차가 보급될 때만 하더라도 자동차는 사치품이였지만, 이제는 우리들 일상생활용품이 되었...
wono | discuss |
생활 자동차 타이어 공기압

겨울철 적정 타이어 공기압?

17인치 235mm 타이어 입니다. 보통은 34정도 세팅...
wono | discuss |
it dev nextjs server-only cache context

Sharing User Data Between Server Components of Different Pages in Next.js 14 · vercel/next.js · Discussion #67330

Sharing User Data Between Server Components of Different Pages in Next.js 14
wono | discuss |
it dev nextjs context cache

NextJS 이해 해보기_5 - Server Component와 Client Component의 구성 패턴

NextJS App Route에서 Server Component와 Client Component 비교
wono | discuss |
it dev nextjs context

Next.js 14 강좌 12편. 서버 컴포넌트 패턴 - 서버 전용 코드(server-only), 써드 파티 패키지, 컨텍스트 프로바이더(Context Provider) 활용하기

서버 컴포넌트 패턴 - 서버 전용 코드, 써드 파티 패키지, 컨텍스트 프로바이더 활용하기
wono | discuss |
it dev nextjs context

Next.js - 서버 컴포넌트에서 useContext() 사용하기

넥스트js는 서버컴포넌트와 클라이언트 컴포넌트로 나뉘어진다 그렇기 때문에 React 기반의 훅들을 사용할 때는 한번더 생각해보아야 한다 오늘은 useContext() 를 어떻게 사용하는 지 알아볼 것이다 Next.js - 서버 컴포넌트에서 useContext() 사용하기 리액트에서 전역 변수를 전달하기 위해 redux / useContext 를 사용하였다 Next.js에서 useContext 를 사용하려고 하니 한가지 제약이 있었다 You are using createContext in a Server Component but it only works in Client Components → 바로 클라이언트 컴포넌트에서만 사용이 가능하다는 것이다 createContext in a Server Compo..
wono | discuss |
it lang naming

Tips on naming boolean variables - Cleaner Code

Originally posted at michaelzanggl.com. Subscribe to my newsletter to never miss out on new... Tagged with codequality, refactorit.
wono | discuss |
it dev nextjs jwt jose

[Next.js@13] jwt 라이브러리, jsonwebtoken 대신 jose

[Next.js@13] jsonwebtoken 대신 jose Next.js에서 jwt를 생성할 때 늘 쓰던 jsonwebtoken 모듈을 시도했다. 결과는 오류! 공식 문서에 따르면 Edge 런타임은 모든 Node.js API를 지원하진 않는다고 알려준다. error - Error: The edge runtime does not support Node.js 'buffer' module. jose 그래서 대체 모듈을 찾다가 jose 라는 모듈을 찾았다. 해당 모듈은 종속성없이 작동한다. 내부에 각 모듈들은 독립적이기에 트리쉐이킹도 가능하다고한다. 지원 목록을 보면 맨 아래에 당당하게 Vercel이 있다. 현재 jwt 생성과 복호화를 jose를 통해 모듈화시켜서 사용하고있다. import { JWTPaylo..
wono | discuss |
it dev nextjs build eslint

eslint 적용시 이슈(rules 무시, 우선순위)

👍 이번시간에는 eslint적용시 만날 수 있는 이슈와 해결방법을 알아보았다! 1. 일부 rules 무시하는 법 특정 코드에서 eslint의 rules을 무시해야할 때가 있다. 이때 우리는 파일 자체를 무시하거나, 다음 라인, 특정 범위의 코드를 무시할 수 있다. 만약 index.js의 test함수에서 no-unused-vars를 무시하고 싶다면 어떻게 해야할까? (1) 특정 파일 무시 만약 파일 차원에서 무시하려면 .eslintignore에 파일명을 추가하면 된다. 하지만 이 경우, index.js에 대해 전체 eslint를 적용하지 않는 단점이 있다. // .**eslintignore** index.js (2) 다음 라인만 무시 두 번째 방법으로 주석을 이용할 수 있다. 만약 다음 라인만 무시하고 싶..
wono | discuss |
it dev nextjs build eslint

How to disable typescript for failing my builds with nextjs?

Getting a bunch of type errors upon running yarn next build, for example: Type error: Property 'href' does not exist on type '{ name: string; }'. Which causes my build to fail. Is there a command i...
wono | discuss |
it dev nextjs build eslint

[Next.js 14] 프로젝트 빌드 시 발생하는 no-console 에러 해결 [ES-Lint]

console.log일반적으로 JavaScript 프로그래밍 시 디버깅 목적으로 브라우저의 console.log 메서드를 자주 사용할 것이다.물론 콘솔 로그는 간편한 디버깅 도구이긴 하지만,보안 이슈가 발생할 우려가 있기에 실제로 배포되는 웹 어플리케이션에는 포함되지 않는 것이 좋다. ESLintESLint는 자바스크립트 코드에서 에러가 있는 부분에 표시를 해주는 정적 코드 분석 도구이다.일반적으로 Typescript, Prettier과 함께 웹 프로그래밍을 할 때 함께 설치되며, 코드의 퀄리티를 보장해준다.ESLint는 하나의 규칙으로 no-console 룰을 가지고 있는데,빌드(npm run build) 시 콘솔 로그가 포함되어 있을 경우 규칙 위반으로 처리하여 빌드가 정상적으로 완료되지 않는다. n..
wono | discuss |
it dev nextjs jose

[Next.js@13] jwt 라이브러리, jsonwebtoken 대신 jose

[Next.js@13] jsonwebtoken 대신 jose Next.js에서 jwt를 생성할 때 늘 쓰던 jsonwebtoken 모듈을 시도했다. 결과는 오류! 공식 문서에 따르면 Edge 런타임은 모든 Node.js API를 지원하진 않는다고 알려준다. error - Error: The edge runtime does not support Node.js 'buffer' module. jose 그래서 대체 모듈을 찾다가 jose 라는 모듈을 찾았다. 해당 모듈은 종속성없이 작동한다. 내부에 각 모듈들은 독립적이기에 트리쉐이킹도 가능하다고한다. 지원 목록을 보면 맨 아래에 당당하게 Vercel이 있다. 현재 jwt 생성과 복호화를 jose를 통해 모듈화시켜서 사용하고있다. import { JWTPaylo..
wono | discuss |
it dev nextjs jose jsonwebtoken

NEXTjs (jose)

next.js에서 jsonwebtoken 에러미들웨어는 노드의 런타임 기능을 사용하고 있으나 Edge 런타임은 노드 항목을 지원하지 않는다.jsonwebtoken jwt.verify(token, ); jose await jwtVerify(token, new Text
wono | discuss |
it dev nextjs jwt refresh

[Next.JS] 사용자 인증 및 401을 위한 middleware 설정

[Next.JS] 사용자 인증 및 401을 위한 middleware 설정
wono | discuss |
it dev nextjs jwt

Next.js 14 App Router로 JWT 기반 세션 인증 구현하기

이 튜토리얼에서는 Next.js 14의 App Router를 사용해 써드파티 라이브러리 없이 JWT 기반의 세션 인증을 구현하는 방법을 다룹니다.
wono | discuss |
it dev nextjs nextauth

드리프트의 myCodings

드리프트의 myCodings.fly.dev!
wono | discuss |
Next
© 2025. LINKTAG.ORG. Help Feedback Privacy Terms