RTK-Query (react) 오늘은 react 개발자에게 매우 유용한 사이트를 하나 소개 드립니다. 번역자는 저와 특수 관계인이라서 더울 소개 해 드리고 싶습니다. 아래는 사이트 접속 URL 입니다. RTK-Query는 React 개발에서 요구되어지는 진보된 데이터 fetching 및 caching tool 입니다. 자세한 내용은 아래의 사이트에 접속 해 보시기 바랍니다. https://junsangyu.gitbook.io/rtk-query/ 프로그램 2021.07.21
gulp + mustache + browsersync easyweb make web programming more easy... -------------------- gulp + mustache + browsersync sample gulpfile.js just run:$ gulp serve ---------------------------------- 프로그램/script 2018.04.12
javascript : Array.prototype.slice and splice Array.prototype.slice and splice 자주 안써서 햇갈릴수 있는 함수.... ^^ slice : The slice() method returns a shallow copy of a portion of an array into a new array object selected from begin to end (end not included). The original array will not be modified. splice : The splice() method changes the contents of an array by removing existing elements and/or adding new elements original array was modified...----.. 프로그램/script 2018.01.25
javascript - Array - unsift, shift, push, pop Javascript의 Array의 멤버함수중 아래 4가지를 잘 알아야 코드를 줄일수 있다.잘설명된 그림을 첨부 합니다.출처 : https://stackoverflow.com/questions/8073673/how-can-i-add-new-array-elements-at-the-beginning-of-an-array-in-javascript 프로그램/script 2017.11.30
Vuejs... study step-03 Vuejs.... 좀더 보자... Vuejs Study - Step3 - Properties on jsbin.com 프로그램/vuejs 2017.10.21
vuejs example 요즘 핫한 뷰제이에스~ 리뷰 IntroductionWhat is Vue.js?Vue (pronounced /vjuː/, like view) is a progressive framework for building user interfaces. Unlike other monolithic frameworks, Vue is designed from the ground up to be incrementally adoptable. The core library is focused on the view layer only, and is easy to pick up and integrate with other libraries or existing projects. On the other hand, Vue is als.. 프로그램/vuejs 2017.10.21
grunt study 001 Javascript에서 독특한 빌드 영역을 담당하는 grunt를 알아보자(혹시 java개발자라면 ant를 생각하시면 됩니다.) GRUNTThe JavaScript Task RunnerTEST : mulder@~/Project/mulder/tools$ mkdir grunt1mulder@~/Project/mulder/tools$ cd grunt1mulder@~/Project/mulder/tools/grunt1$ lsmulder@~/Project/mulder/tools/grunt1$ npm init mulder@~/Project/mulder/tools/grunt1$ sudo npm -g install grunt-cli mulder@~/Project/mulder/tools/grunt1$ npm -S instal.. 프로그램 2017.03.19
Useful javascript regular expression 유용한 Javascript RegExref : http://ntt.cc/2008/05/10/over-10-useful-javascript-regular-expression-functions-to-improve-your-web-applications-efficiency.html 1// Check if string is non-blank2var isNonblank_re = /\S/;3function isNonblank (s) {4 return String (s).search (isNonblank_re) != -15} 1// Check if string is a whole number(digits only).2var isWhole_re = /^\s*\d+\s*$/;3function isWhole (s) {4 .. 프로그램/script 2015.12.05
Javascript Typeof ref: http://www.w3schools.com/jsref/jsref_operators.asp typeof "John" // Returns string typeof 3.14 // Returns number typeof NaN // Returns number typeof false // Returns boolean typeof [1, 2, 3, 4] // Returns object typeof {name:'John', age:34} // Returns object typeof new Date() // Returns object typeof function () {} // Returns function typeof myCar // Returns undefined (if myCar is not decla.. 프로그램/script 2015.11.25
JavaScript TCP/IO by Flash Socket Bridge JavaScript로 원격네트웍을 이용할 수 있을까???쉽지않죠... 가장 쉽게 떠올리는건 HTML5 WebSocket 일겁니다.그러나, 사용상의 제약도 많고 브라우져 특성도 무시 못합니다.그렇다면 대안이 뭘까 ??? 생각해보면 Flash Network API를 이용하고 이걸 Javascript Callback과 연결하면 되지 않을까요 ?...이미 이러한 아이디어는 오래전부터 있어 왔네요... 일단 참고 URL 만 모아 두고, 차근차근 연구해야 될것 같습니다.암튼 좋은 아이디어고, 쓸만할것 같습니다. 아래는 참고 페이지들 입니다. http://matthaynes.net/blog/2008/07/17/socketbridge-flash-javascript-socket-bridge/ http://blog.ion.. 프로그램/script 2013.11.21