javascript source code Obfuscate, 소스 코드 암호화 - Obfuscation, obfuscator mangle, minimize, encode //------------------------ * 속도 비교 원본 : 100% terser : 96.4% javascript-obfuscator : 103.6% (...
javascript
코드루덴스 on 21-02-22
자바스크립트 연산자 || (OR) , ?? (Nullish coalescing operator, 널 병합 연산자) 다른점
코드루덴스 on 21-02-05
- 자바스크립트 html 제어 //----------------------------------- < 쉐도우 돔(Shadow DOM) > - nodeType = 11 - 생성 let node = document.createElement('div'); - let shadow = node.attachShadow({mode:"open"}...
코드루덴스 on 21-01-19
2020년은 코로나19로 인해 많은 것들이 변했지만 나에게도 많은 변화가 있었다. 기존 것을 과감히 버리려고 했고 새로운 것을 얻으려 했지만 생각만큼 만족한 결과를 얻진 못했다. 개발자로의 삶을 영위하기 위해 꼭...
PHP CodeIgniter FrontEnd
inlee's blog on 20-12-23
- 설치 npm install --save sequelize npm install --save sqlite3 mapbox /node-sqlite3 https://github.com/mapbox/node-sqlite3 - 4.6k - v5.0.0 , 2020/07 - 매뉴얼 https://github.com/mapbox/node-sqlite3/wik...
코드루덴스 on 20-11-29
- 일렉트론 main process(main.js) 와 render process(UI, main.htm) 프로세스간 통신 //--------------------------------------------- - main.htm ( render process(UI))
mawie81 /electron-window-state https://github.com/mawie81/electron-window-state - 491 - v5.0.3 , 2018/11 //----------------------------------------- const windowStateKeeper = require('electron-window-...
코드루덴스 on 20-11-27
- 주의! Electron v12(2020/11 현재 베타) 에서 메뉴 작동 문제 있음 , v11 사용 권장 //------------------ // main.js 파일 const { app, Menu, BrowserWindow, globalShortcut } = require("electron"); // 메뉴...
- 자바스크립트(js)용 , html to pdf converter library list * MrRio /jsPDF https://github.com/MrRio/jsPDF - 20.5k - v2.1.1 , 20/09 - 매뉴얼 http://raw.githack.com/MrRio/jsPDF/master/docs/ - html을 변환...
코드루덴스 on 20-11-20
자바스크립트(js) 자연어 처리 기초, 불규칙 명사 포함, 단수 복수 상호 변경. English Noun word singular plural Change each other https://stackoverflow.com/questions/27194359/javascript-pluralize-an-engli...
코드루덴스 on 20-09-08