일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 맥
- vsCode
- 리눅스
- 네트워크
- webpack
- 티스토리챌린지
- qunit
- 센토스
- react
- node
- 오블완
- TensorFlow
- xcode
- MachineLearning
- androidstudio
- IOS
- jest
- centos
- localserver
- 개발
- build
- unittest
- MAC
- Chrome
- VirtualBox
- linux
- PYTHON
- Android
- ReactNative
- Today
- Total
목록Backend/node (6)
로메오의 블로그
JSON 읽어오기 const fs = require('fs') const dataFile = fs.readFileSync('./data.json', 'utf8') const dataData = JSON.parse(dataFile) console.log(dataData) 폴더내 파일 목록 const fs = require('fs') fs.readdir('asis', (err, files) => { console.log(files) }) 동일한 파일 여부 확인 const fs = require('fs') fs.exists('file.txt', (exists) => { console.log(exists ? '동일한 파일 있음' : '동일한 파일 없음') }) 파일 쓰기 const fs = require('fs..
ㅁnpm yarn 명령어 비교입니다. npm yarn npm install jquery --save yarn add jquery npm install jquery@lastest yarn add jquery npm install jquery --global yarn global add jquery npm install jquery --save-dev yarn add jquery --dev npm uninstall jquery --save yarn remove jquery npm update jquery --save yarn upgrade npm init yarn init npm link yarn link npm outdated yarn outdated npm publish yarn publish npm r..
node.js의 face-api를 브라우저에서 구현합니다. 프로젝트 설정 $ cd /my/project/path $ mkdir faceRecognition $ code ./faceRecognition $ yarn add face-api.js $ cp node_modules/face-api.js/dist/face-api.min.js . $ touch index.html script.js $ mkdir known unknown 첨부된 models.zip 파일을 다운로드해서 프로젝트에 추가합니다. 위와 같이 프로젝트가 구성되었습니다. unknown폴더에 식별할 사진을 추가합니다. index.html script.js const imageUpload = document.getElementById('imageUp..
npm 설치과정에서 mkdir permission 오류가 발생했을때 $ sudo npm install web3 --unsafe-perm=true --allow-root sudo npm 으로도 해결되지 않으면 --unsafe-perm=true --allow-root 옵션을 준다. 그리고 Appears to be a git repo or submodule. 오류가 발생하면 $ sudo rm -rf node_modules/*/.git/ node_modules에 있는 .git 파일을 제거하고 다시 설치한다. 제일 좋은 방법은 yarn으로 넘어가시는게...
프로젝트 생성하기 $ cd /my/project/path $ mkdir firstProject $ cd firstProject $ npm init -y $ npm install --save-dev webpack $ npm install --save-dev webpack-cli webpack은 global로 설치하는것을 권장하지 않는다고 합니다. local로 설치하세요. webpack.config.js 파일 생성하기 $ touch webpack.config.js 파일을 열어서 config 코드를 작성합니다. var path = require('path'); module.exports = { }; webpack-dev-server 설치 $ npm install --save-dev webpack-dev-ser..