2024/09/08 3

notion api / start & create page

Introductionnotion api를 사용하는걸 araboza    # notion 개발자 사이트 Notion API developers.notion.com   # 먼저 integration을 만들라고 한다. Build your first integrationMake your first request to the Notion API.developers.notion.com여기에 자세히 적혀있음 https://www.notion.com/my-integrations Your connected workspace for wiki, docs & projects | NotionA new tool that blends your everyday work apps into one. It's the all-in-one..

etc/devTools 2024.09.08

postman / api test tool

Introduction난 지금까지 postman을 사용해본적이 없다 ㅠ사실 존재도 몰랐다. 이게 독학의 한계인가 싶은데 훈련소에서 사람들한테 들어서 알게됐다.지금까지 로컬이든 뭐든 죄다 코드로 짜서 api요청을 보냈었음..api테스트 하는데 편리한 도구인 postman사용법을 간단하게 소개해보려고 한다. # 간단한 api test 서버 만들기nodejs로 간단한 api서버를 만들어볼거다.vs코드를 키고 폴더 하나 만들고npm initnpm i express 그리고 server.js파일을 하나 만들어주고 아래 코드를 복붙하샘const express = require("express");const app = express();const port = 3000;// Middleware to parse JSON ..

etc/devTools 2024.09.08

vs코드 에디터와 터미널 focus 변경 단축키 만들기

#개요로컬서버 돌릴때랑 vs코드작성할때 단축키 만드는 방법이다.매번 코드 쓰고 터미널 명령어 칠려고 할때 마우스로 클릭할 필요없이단축키로 이동하는 방법이다.  # 방법cntl + shift + p vs코드에서 저거 치면저 창뜨는데 거기에 keyboard shortcuts검색여러개 뜨는데 저 preferences: Open Keyboard Shortcuts들어가샘 JSON파일이 뜨는데, { "key": "ctrl+;", "command": "terminal.focus", "when": "editorFocus" }, { "key": "ctrl+;", "command": "workbench.action.focusActiveEditorGroup", "when": "termi..

etc/devTools 2024.09.08