본문 바로가기

cordova 아카이브 https://archive.apache.org/dist/cordova/ Index of /dist/cordova archive.apache.org 더보기
react QueryClient QueryClient 는 캐시와 상호작용 할 때 사용한다 import { QueryClient } from "react-query"; const queryClient = new QueryClient({ defaultOptions: { queries: { staleTime: Infinity, }, }, }); 더보기
샵정보 SQL SELECT name, age, location,course, date_yn, special_yn, add_shot_yn FROM ap_shop WHERE type ='M1' ORDER BY age desc, max_time desc, date_yn desc 더보기
Detail: Unable to resolve text model content for resource vscode://schemas/settings/configurationDefaults. 해결방법 roblems loading reference 'vscode://schemas/settings/configurationDefaults': Unable to load schema from 'vscode://schemas/settings/configurationDefaults': cannot open vscode://schemas/settings/configurationDefaults. Detail: Unable to resolve text model content for resource vscode://schemas/settings/configurationDefaults. Detail: Unable to resolve text model content for resource vscode://schemas/.. 더보기
JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists. 오류 해결방법 JSX element implicitly has type 'any' because no interface 'JSX.IntrinsicElements' exists. 오류 해결방법 VSCode에서 해당 문제 해결 방법은 원도우 리로드 하는 것 입니다. Ctrl+Shift+P -or- ⌘+shift+P > Developer: Reload Window 이상입니다. 감사합니다. 더보기
intellij idea community edition 2022.3.1 다운로드 방법 다운로드... https://www.jetbrains.com/ko-kr/idea/download/other.html 기타 버전 - IntelliJ IDEA www.jetbrains.com . 더보기
MariaDB 버전 확인 방법 SELECT version(); Version() 10.4.19-MariaDB-log 더보기
https://github.com/ytkj/ag-grid-axios https://github.com/ytkj/ag-grid-axios GitHub - ytkj/ag-grid-axios: frontend utilities for AgGrid and Axios HTTP client, powered by TypeScript. frontend utilities for AgGrid and Axios HTTP client, powered by TypeScript. - GitHub - ytkj/ag-grid-axios: frontend utilities for AgGrid and Axios HTTP client, powered by TypeScript. github.com 더보기
TypeScript 숫자 여부 판단 public isNumeric(data : string) : boolean { return !isNaN(Number(string)); } qty === null typeof qty === 'undefined' Number.isNaN(qty) 더보기
Typescript 환경의 Ag-Grid 숫자 전용 입력 창(numericcelleditor) https://www.ag-grid.com/javascript-data-grid/component-cell-editor/ JavaScript Data Grid: Cell Editors Create your own cell editor by providing a cell editor component. Download v31 of the best JavaScript Data Grid in the world now. www.ag-grid.com import { createGrid, GridApi, GridOptions } from 'ag-grid-community'; import 'ag-grid-community/styles/ag-grid.css'; import 'ag-grid-community/styles.. 더보기
리액트 앱 AWS 배포가이드 원문 : https://react-etc.vlpt.us/08.deploy-s3.html 리액트 앱 AWS S3, CloudFront 에 배포하기 · GitBook 리액트 앱 AWS S3, CloudFront 에 배포하기 이번 튜토리얼에서는 리액트 앱을 AWS S3 에 배포하고 CloudFront 를 통하여 CDN 에 태우는 방법을 알아보겠습니다. 우선, CRA 를 사용하여 프로젝트를 만들어주겠 react-etc.vlpt.us 리액트 앱을 AWS S3 에 배포하고 CloudFront 를 통하여 CDN 에 태우는 방법을 알아보겠습니다. 우선, CRA 를 사용하여 프로젝트를 만들어주겠습니다. $ create-react-app sample-deploy 그리고, 이 프로젝트를 yarn build (혹은 npm r.. 더보기
TypeScript 리덕스 사용방법 원문 : https://react-etc.vlpt.us/07.typescript-redux.html TypeScript + 리덕스 · GitBook TypeScript 로 스마트하게 리덕스 사용하기 이번에는, 타입스크립트를 사용하는 리액트 환경에서 리덕스를 사용하는 방법을 알아보겠습니다. 타입스크립트와 리덕스를 함께 사용한다면 다음과 같 react-etc.vlpt.us 타입스크립트를 사용하는 리액트 환경에서 리덕스를 사용하는 방법을 알아보겠습니다. 타입스크립트와 리덕스를 함께 사용한다면 다음과 같은 이점들이 있습니다. connect 하게 될 때 리덕스 스토어 안에 들어있는 값들의 타입추론 + 자동완성 액션 생성 함수를 사용하게 될 때 자동완성 리듀서를 작성하게 될 때 액션에 어떤 값이 들어있는지 확인 가.. 더보기