분류 전체보기
-
카카오 SDK사용하기 - 카카오 채널 추가하기, 채팅하기카테고리 없음 2022. 4. 22. 15:14
https://developers.kakao.com/tool/social-plugin/channel/add Kakao Developers 카카오 API를 활용하여 다양한 어플리케이션을 개발해보세요. 카카오 로그인, 메시지 보내기, 친구 API, 인공지능 API 등을 제공합니다. developers.kakao.com https://developers.kakao.com/tool/demo/channel/add Kakao Developers 카카오 API를 활용하여 다양한 어플리케이션을 개발해보세요. 카카오 로그인, 메시지 보내기, 친구 API, 인공지능 API 등을 제공합니다. developers.kakao.com https://developers.kakao.com/docs/latest/ko/kakaotalk..
-
-
[m1 맥북] - nest.js 공부하기 1. Nestjs 모듈이란?Nest.js 2022. 4. 19. 13:10
NestJS 모듈이란? Nest JS를 사용해서 만드는 앱 구조 App Module안에 BoardModule과 AuthModule이 있으면 각 모듈안에 Controller Entity Service등이 있습니다. 그래서 우선 모듈(Module)이 무엇인지 알아보겠습니다. [1] Board module 생성하기. 모듈생성 Board 모듈 생성 명령어 -> nest g module boards nest : using nestcli g: generate module : schematic that i want to create boards : name of the schematic //터미널에서 nest g module boards cli로 modules 생성하면 app.modules에 자동 추가된다!! - 생..
-
-
m1 맥북 node 개발 세팅 - [2] express 설치 & 리액트 설치카테고리 없음 2022. 4. 14. 00:06
sudo npm install express-generator -g express의 뼈대를 만들어주는 express-generator를 전역으로 설치 WARN 뜨는데 걍 무시 express -h 명령어 먹으면 성공한거! express server //server라는 express 프로젝트를 만든다라는 명령어 //시키는대로 하면됨. hange directory: $ cd server install dependencies: $ npm install run the app: $ DEBUG=server:* npm start express 서버 띄우기 성공! node 너무 좋아 2. nodemon 설치 nodemon을 설치하면 재시작 없이 코드를 자동 반영 할수 있다. cd server //server 폴더로 꼭 ..
-
m1 맥북 node 개발 세팅 - [1] node 설치카테고리 없음 2022. 4. 13. 01:00
1. vscode : vscode 홈페이지에서 다운. https://code.visualstudio.com/ Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio.com 2. git-fork : git-gui툴 홈페이지에서 다운. https://git-fork.c..
-