일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- blockchain
- erc721
- MySQL
- web3.js
- ERC20
- git
- 제어의역전
- 네트워크
- 솔리디티
- github
- JavaScript
- web
- ethers
- Ethereum
- ERC165
- NFT
- truffle
- Docker
- Programming
- tcp
- 스마트 컨트랙트
- web3
- 블록체인
- 이더리움
- geth
- solidity
- server
- 트랜잭션
- Python
- erc
- Today
- Total
목록서버/nodejs (5)
멍개의 연구소
nestjs에서 스웨거 사용시 주의사항을 살펴보겠습니다. 스웨거를 사용하다보면 다음과 같은 에러가 발생할 수 있습니다. /Users/jeongtaepark/Desktop/node_modules/@nestjs/swagger/dist/services/schema-object-factory.js:170 throw new Error(`A circular dependency has been detected (property key: "${key}"). Please, make sure that each side of a bidirectional relationships are using lazy resolvers ("type: () => ClassType").`); ^ Error: A circular depen..
pdf -> html 변환가장 무난하다. 기본적으로 pdf는 htm와 비슷한 형태의 구조를 가지고 있다. 크게 header, body, xref table, trailer의 구조로 되어있다. pdf는 환경에 상관없이 표현을 하기 위한 목적을 가지고 있는 파일이다. 이런 이유 때문에 무난히 진행이 된 것 같다. pdf2htmlex와 pdftohtmljs라는 모듈을 이용을 했다.var pdftohtml = require('pdftohtmljs'); var converter = new pdftohtml('test.pdf', "sample.html"); converter.convert('ipad').then(function() { console.log("Success"); }).catch(function(err..
파일 리더기를 만들고 있다. 우선 rtf와 docx 직접적으로 처리를 하려고 했으나 매우 거지 같아서 pdf로 변환을 거친 후 처리를 하기로 했다. 이번에는 pdf 파일을 html 파일로 바꿔주는 방법, docx파일을 pdf파일로 바꿔주는 방법에 대해서 다뤄보고자 합니다. 우선 pdftohtmljs라는 모듈을 사용할 것인데. 해당 모듈을 사용하기 전에 pdf2htmlex라는 모듈이 설치가 되어야 한다. $ sudo apt-get install pdf2htmlexubuntu의 경우 위와같이 설치를 해줍니다.$ brew install pdf2htmlexmac의 경우는 brew를 이용하여 설치를 해줍니다. 간혹 맥에서 위처럼 설치중에 아래와 같은 문구가 나타나면서 설치가 진행이 되지 않을 수있습니다.Error..
Express Boilerplateexpress는 node.js에서 제공하는 프레임워크. express-genderator를 설치를 통해 express 프로젝트 생성이 가능하다.아래의 내용은 Mysql 혹은 MariaDB, MongoDb(mongodb모듈을 통해 로우단에서 mongodb를 다룬다.)를 기준으로 디비에 대한 설명을 다룰 것 이다.목차express 프로젝트 시작생성 된 프로젝트 설명 및 수정디렉토리 관리설정파일 관리 및 정적파일 관리클러스터링 설정DB 관리ORM 및 모델링 방법413 응답코드 대처법미들웨어의 활용방법file upload 방법test 코드 작성하기1. express 프로젝트 시작express-genderator설치$ npm install -g express-generator e..