전체
-
js 세상 PDF 관련 라이브러리dev/javascript 2024. 9. 7. 09:34
https://github.com/parallax/jsPDF GitHub - parallax/jsPDF: Client-side JavaScript PDF generation for everyone.Client-side JavaScript PDF generation for everyone. - parallax/jsPDFgithub.comstar 29kpdf 생성 라이브러리. https://github.com/simonbengtsson/jsPDF-AutoTable GitHub - simonbengtsson/jsPDF-AutoTable: jsPDF plugin for generating PDF tables with javascriptjsPDF plugin for generating PDF tables with..
-
Screenshots with JavaScript - html2canvasdev/javascript 2024. 9. 7. 09:12
https://html2canvas.hertzen.com/ html2canvas - Screenshots with JavaScriptTry out html2canvas Test out html2canvas by rendering the viewport from the current page. Capturehtml2canvas.hertzen.com html 영역을 이미지로 저장. 캡쳐하는것이 아닌 canvas 에 DOM 을 그려주므로 브라우저에 적용되는 제약들이 동일하게 적용(CORS 등). 메인 페이지 우측하단에 있는 버튼으로 테스트 가능.
-
js/html5 기반 이미지분석 비교 - resemble.jsdev/javascript 2024. 9. 7. 08:58
https://www.npmjs.com/package/resemblejs resemblejsImage analysis and comparison with HTML5. Latest version: 5.0.0, last published: a year ago. Start using resemblejs in your project by running `npm i resemblejs`. There are 76 other projects in the npm registry using resemblejs.www.npmjs.com이미지가 가지는 픽셀 데이터 정보 표현, 두 이미지 비교 분석을 해줌. 플레이그라운드에서 간단하게 체험해볼수 있음.https://rsmbl.github.io/Resemble.js/ Resem..
-
zod for nestjsdev/nestjs 2024. 1. 11. 17:19
Creating a configuration module like a specialist with Zod inside NestJS https://medium.com/nestjs-ninja/creating-a-configuration-module-like-a-specialist-with-zod-inside-nestjs-c61430de896b Creating a configuration module like a specialist with Zod inside NestJS Hello fellow coders! Today we are going to talk about something simple that basically everybody and every project does, which is using..
-
nest.js websocket(socket.io) client 예제를 찾는 사람들dev/nestjs 2022. 11. 12. 16:50
https://github.com/nestjs/docs.nestjs.com/issues/858 Add tutorial for Nest Websocket Client · Issue #858 · nestjs/docs.nestjs.com I'm submitting a... [ ] Regression [ ] Bug report [ ] Feature request [x] Documentation issue or request (new chapter/page) [ ] Support request => Please do not submit support request here, ... github.com nest.js 를 이용하여 전체 시스템 구성을 nest.js 만으로 만들다 보니 websocket server 예..
-
S3, CloudFront, SSL 인증서 설정dev/aws 2022. 7. 31. 00:59
Amazon S3를 사용하여 정적 웹 사이트 호스팅하기 https://docs.aws.amazon.com/ko_kr/AmazonS3/latest/userguide/WebsiteHosting.html Amazon S3를 사용하여 정적 웹 사이트 호스팅 - Amazon Simple Storage Service 이 페이지에 작업이 필요하다는 점을 알려 주셔서 감사합니다. 실망시켜 드려 죄송합니다. 잠깐 시간을 내어 설명서를 향상시킬 수 있는 방법에 대해 말씀해 주십시오. docs.aws.amazon.com CloudFront 에서 원본을 Amazon S3 버킷 사용하기 https://docs.aws.amazon.com/ko_kr/AmazonCloudFront/latest/DeveloperGuide/Downlo..
-
node c++ addon runtime error in windows(A heap has been corrupted)카테고리 없음 2022. 3. 16. 18:53
node c++ addon 으로 개발중 발생한 예외. Exception has occurred: W32/0xC0000374 Unhandled exception at 0x00007FFF9784F249 (ntdll.dll) in node.exe: 0xC0000374: A heap has been corrupted (parameters: 0x00007FFF978B77F0). https://github.com/nodejs/node-addon-api/issues/682 Heap corruption when using ifstream / stringstring (ios_base) · Issue #682 · nodejs/node-addon-api I encountered a strange problem while u..
-
node c++ addondev/C,C++ 2022. 3. 14. 10:49
node 에서 사용가능한 모듈을 c/c++ 로 개발. https://nodejs.org/dist/latest-v16.x/docs/api/n-api.html Node-API | Node.js v16.14.0 Documentation nodejs.org 관련 대부분의 문서에 윈도우 기준 windows-build-tool 을 설치하는 단계가 있는데 windows-build-tools 공식 페이지에는 deprecated 라고 표시되고 현재는 nodejs 설치 패키지에 포함되어 있다고 설명이 되어있으므로 따로 설치할 필요가 없음. 참고로 windows-build-tools 는 node-gyp, python, vs compiler 를 설치, 설정 해주는 도구임. 문제시 각각을 수동으로 설치도 가능함. 만약 win..