전체 글 510

[ FLUTTER ] Riverpod 카운트증가 앱 예제

// ignore_for_file: prefer_const_constructors // 58:26 (https://www.youtube.com/watch?v=vtGCteFYs4M) import 'package:flutter/material.dart'; import 'package:flutter_riverpod/flutter_riverpod.dart'; void main() { // riverpod을 사용하기 위해 ProviderScope로 뚜껑을 감싸줌 runApp(ProviderScope(child: const App())); } // null값 계산을 위한 +연산자오버로딩 extension OptionalInfixAddition on T? { T? operator +(T? other) { final ..

App/Flutter 거북 2023.08.17

[ DB2 ] AS400버전 nodejs에서 연결하는 방법

https://github.com/tryggingamidstodin/node-jt400 GitHub - tryggingamidstodin/node-jt400: NodeJS JT400 wrapper to connect to IBM iSeries and AS/400 systems (OS400 operating syste NodeJS JT400 wrapper to connect to IBM iSeries and AS/400 systems (OS400 operating system, database like DB2, programs and filesystem) - GitHub - tryggingamidstodin/node-jt400: NodeJS JT400 wrapper... github.com 정말 정말 연동..

카테고리 없음 라넌.B 2023.08.07

[ OS ] M1 arm64 에러 해결 방법

https://jhyeok.com/m1-trouble-shooting/ https://jhyeok.com/m1-trouble-shooting/ 최근에 맥북 프로(M1 Pro)의 개발 환경을 설정하면서 만난 문제들을 해결하면서 정리한 글입니다. 주로 Node.js와 TypeScript를 사용하기 때문에 다른 기술 스택을 사용하신다면 도움이 되지 않을 수 jhyeok.com arm64에러가 나면 nvm을 arm64에 nvm install 으로 설치하고 해당 버전을 사용해서 플러그인 설치하면 된다.

BE/OS 라넌.B 2023.08.07

[ NEST ] NestJS

[ NEST ] NestJS * 참고자료 https://docs.nestjs.com/ 서버는 다양한 언어 또는 프레임워크가 존재하겠지만 그중 NestJS를 이용한 서버 세팅을 만들어보고자 한다. nestjs는 Angular프레임워크에 영감을 받아 제작된 툴이기 때문에 Angular를 사용해본 개발자라면 친숙하게 느껴질 것이다. * 터미널 명령어 nest new `프로젝트명` npm install npm run start nest-flutter라는 새 프로젝트를 npm으로 생성하였다. 프로젝트 생성이 완료되었다면 다음과 같은 파일 구조를 볼 수 있다. * main.ts nest의 시작이 되는 곳은 main.ts이며, 메인모듈 및 포트명을 지정할 수 있다. * app.module.ts AppModule에서는..

BE/Nest 거북 2023.07.31