+ it dev nextjs serverless Next.js의 API Routes 코드 모듈화에 대해서API Routes를 사용하면 코드가 매우 지저분해진다. API Routes를 사용하면서 어떻게 하면 코드를 보기 좋은 형태로 남길 수 있을지 고민한 흔적. wono | discuss | tweet + it dev nextjs How can I separate data layer from Next.js API routes? wono | discuss | tweet + it qa arc "Service" or "Repository" -- Naming is hard! · Issue #14 · brianegan/new_flutter_templateMany apps talk to external data sources via some kind of "Data Layer." Some folks call these Data Layer objects "Repositories," while others call these same type of objects "Services." Which makes the most sense or feels the most univers... wono | discuss | tweet + it dev javascript module 📦 JavaScript Module System자바스크립트의 모듈 시스템 (ESM, CommonJS, AMD) wono | discuss | tweet + it dev nextjs inject OOP and Dependency Injection in NextJsInversion of Control with InversifyJs in NextJs wono | discuss | tweet + it dev express inject Express를 NestJS처럼 사용하기 (feat. InversifyJS)MVC 패턴이란? wono | discuss | tweet + it dev express inject The Controller-Service-Repository Pattern: A Comprehensive GuideIntroduction In modern software development, creating scalable, maintainable, and testable applications is paramount. One architectural pattern that helps achieve these goals is the Controller-Service-Repository (CSR) pattern. wono | discuss | tweet + it dev nextjs cors Using CORS in Next.js to handle cross-origin requests - LogRocket BlogThere are several ways to configure CORS in Next.js. Let's look at how to use the most critical headers to make your site more secure. wono | discuss | tweet + it dev nextjs Next.js 개발 요청사항1. Routing 정책 - App Router를 쓰는지 그렇다면 use client를 써야하는 상황 - App Router vs. Page Router → App Router 방식을 사용합니다. 공시문서: https://nextjs.org/docs#app-router-vs-pages-router App Router에서는 streaming과 같은 최신 React 기능을 사용할 수 있는 이점이 있습니다. Next.js 13.3까지 Page Router 방식을 사용했고 App Router는 베타 단계였고, Next.js 13.4부터 App Router가 정식 버전으로 채택되었습니다. App Router의 가장 큰 변화는 RSC(React Server Component)를 default로 쓰고 있다는 점입니다.. wono | discuss | tweet + it dev nextjs request Access Request Object in New App Directory Page Route · vercel/next.js · Discussion #42732Access Request Object in New App Directory Page Route wono | discuss | tweet + it dev nextjs how to get the client Ip address in app router? · vercel/next.js · Discussion #55037how to get the client Ip address in app router? wono | discuss | tweet + it dev nextjs zustand Setup with Next.js - Zustand wono | discuss | tweet + it dev nextjs Next.js 14 강좌 1편. 라우팅의 모든 것Next.js 14 강좌 1편. 라우팅의 모든 것 wono | discuss | tweet + it dev nestjs todo NestJS 로 Todo App 만들기입사지원 과제로 제출한 Todo 프로젝트입니다. 풀스택으로 일주일간 구현했습니다. wono | discuss | tweet + it dev spring Spring Guide - Directory - Yun Blog | 기술 블로그Yun Blog | 기술 블로그 wono | discuss | tweet + it dev nextjs controller GitHub - ayonli/next-controller: Elegant API/MVC controller wrapper for Next.js framework.Elegant API/MVC controller wrapper for Next.js framework. - ayonli/next-controller wono | discuss | tweet + it arc domain 도메인 주도 설계와 MSA: 라이프 사이클을 기준으로 한 도메인 분리이 글에서는 도메인 주도 설계와 MSA를 라이프 사이클을 기준으로 도메인을 분리하는 방법에 대해 설명합니다. 이를 통해 복잡한 시스템을 효율적으로 관리하고, 유지보수성을 높일 수 있습니다. wono | discuss | tweet + it dev nestjs NestJS 폴더구조는 왜 이렇게 구성되었을까?NestJS가 기본적으로 제공하는 폴더구조는 어떤 철학이 존재할까!NestJS에서는 기본적으로 아래와 같은 폴더 구조를 보여준다.NestJS는 모듈화와 의존성 주입(Dependency Injection)을 강조하여 애플리케이션의 확장성과 유지보수성을 향상시킨다고 말한다 wono | discuss | tweet + 창업회고 프로젝트 qwer QWER.GG 를 떠나보내며0. Let it go 작년 12월부터 지난 2개월 간은 정말 감정적으로도 체력적으로도 힘든날들의 연속이었다. 새로운 사람들을 거의 강제로 만났어야 했고, 만날 때마다 즐거운 이야기보다는 힘든 이야기들을 해야만 했다. 나는 QWER.GG 를 매각하거나, 투자처를 찾았어야 했고 시간적인 여유도 매우 부족했다. 우리의 결정이나 그 과정이 만족스러울 리는 없지만 이제 어느정도 마무리가 wono | discuss | tweet + it dev nestjs [NestJS] NestJS API 만들기(movies controller, router, service, DTO) (2)Movies 컨트롤러 생성하기 (nest g co 명령어) nest 명령어를 통해 영화 api에 필요한 새로 필요한 컨트롤러를 genereate 해준다. controller의 alias는 'co' 이므로 nest g co 이런 식으로 명령어를 사용한다. controller의 이름을 입력하면 밑의 그림과 같이 파일이 새로 생겨난다. import { Module } from '@nestjs/common'; import { MoviesController } from './movies/movies.controller'; @Module({ imports: [], controllers: [MoviesController], providers: [], }) export class AppModule {} 다음과 같이 자.. wono | discuss | tweetNext
+ it dev nextjs serverless Next.js의 API Routes 코드 모듈화에 대해서API Routes를 사용하면 코드가 매우 지저분해진다. API Routes를 사용하면서 어떻게 하면 코드를 보기 좋은 형태로 남길 수 있을지 고민한 흔적. wono | discuss | tweet
+ it qa arc "Service" or "Repository" -- Naming is hard! · Issue #14 · brianegan/new_flutter_templateMany apps talk to external data sources via some kind of "Data Layer." Some folks call these Data Layer objects "Repositories," while others call these same type of objects "Services." Which makes the most sense or feels the most univers... wono | discuss | tweet
+ it dev javascript module 📦 JavaScript Module System자바스크립트의 모듈 시스템 (ESM, CommonJS, AMD) wono | discuss | tweet
+ it dev nextjs inject OOP and Dependency Injection in NextJsInversion of Control with InversifyJs in NextJs wono | discuss | tweet
+ it dev express inject The Controller-Service-Repository Pattern: A Comprehensive GuideIntroduction In modern software development, creating scalable, maintainable, and testable applications is paramount. One architectural pattern that helps achieve these goals is the Controller-Service-Repository (CSR) pattern. wono | discuss | tweet
+ it dev nextjs cors Using CORS in Next.js to handle cross-origin requests - LogRocket BlogThere are several ways to configure CORS in Next.js. Let's look at how to use the most critical headers to make your site more secure. wono | discuss | tweet
+ it dev nextjs Next.js 개발 요청사항1. Routing 정책 - App Router를 쓰는지 그렇다면 use client를 써야하는 상황 - App Router vs. Page Router → App Router 방식을 사용합니다. 공시문서: https://nextjs.org/docs#app-router-vs-pages-router App Router에서는 streaming과 같은 최신 React 기능을 사용할 수 있는 이점이 있습니다. Next.js 13.3까지 Page Router 방식을 사용했고 App Router는 베타 단계였고, Next.js 13.4부터 App Router가 정식 버전으로 채택되었습니다. App Router의 가장 큰 변화는 RSC(React Server Component)를 default로 쓰고 있다는 점입니다.. wono | discuss | tweet
+ it dev nextjs request Access Request Object in New App Directory Page Route · vercel/next.js · Discussion #42732Access Request Object in New App Directory Page Route wono | discuss | tweet
+ it dev nextjs how to get the client Ip address in app router? · vercel/next.js · Discussion #55037how to get the client Ip address in app router? wono | discuss | tweet
+ it dev nestjs todo NestJS 로 Todo App 만들기입사지원 과제로 제출한 Todo 프로젝트입니다. 풀스택으로 일주일간 구현했습니다. wono | discuss | tweet
+ it dev nextjs controller GitHub - ayonli/next-controller: Elegant API/MVC controller wrapper for Next.js framework.Elegant API/MVC controller wrapper for Next.js framework. - ayonli/next-controller wono | discuss | tweet
+ it arc domain 도메인 주도 설계와 MSA: 라이프 사이클을 기준으로 한 도메인 분리이 글에서는 도메인 주도 설계와 MSA를 라이프 사이클을 기준으로 도메인을 분리하는 방법에 대해 설명합니다. 이를 통해 복잡한 시스템을 효율적으로 관리하고, 유지보수성을 높일 수 있습니다. wono | discuss | tweet
+ it dev nestjs NestJS 폴더구조는 왜 이렇게 구성되었을까?NestJS가 기본적으로 제공하는 폴더구조는 어떤 철학이 존재할까!NestJS에서는 기본적으로 아래와 같은 폴더 구조를 보여준다.NestJS는 모듈화와 의존성 주입(Dependency Injection)을 강조하여 애플리케이션의 확장성과 유지보수성을 향상시킨다고 말한다 wono | discuss | tweet
+ 창업회고 프로젝트 qwer QWER.GG 를 떠나보내며0. Let it go 작년 12월부터 지난 2개월 간은 정말 감정적으로도 체력적으로도 힘든날들의 연속이었다. 새로운 사람들을 거의 강제로 만났어야 했고, 만날 때마다 즐거운 이야기보다는 힘든 이야기들을 해야만 했다. 나는 QWER.GG 를 매각하거나, 투자처를 찾았어야 했고 시간적인 여유도 매우 부족했다. 우리의 결정이나 그 과정이 만족스러울 리는 없지만 이제 어느정도 마무리가 wono | discuss | tweet
+ it dev nestjs [NestJS] NestJS API 만들기(movies controller, router, service, DTO) (2)Movies 컨트롤러 생성하기 (nest g co 명령어) nest 명령어를 통해 영화 api에 필요한 새로 필요한 컨트롤러를 genereate 해준다. controller의 alias는 'co' 이므로 nest g co 이런 식으로 명령어를 사용한다. controller의 이름을 입력하면 밑의 그림과 같이 파일이 새로 생겨난다. import { Module } from '@nestjs/common'; import { MoviesController } from './movies/movies.controller'; @Module({ imports: [], controllers: [MoviesController], providers: [], }) export class AppModule {} 다음과 같이 자.. wono | discuss | tweet