NodeJs
-
NodeJs 기반에서 React 배포NodeJs 2022. 11. 20. 21:05
사전 준비 Vsc, VSCode(Visual Studio Code) 설치 NodeJs 설치 NodeJs Express 설치 선택사항 Vsc & NodeJs 에서 TypeScript 설치 빌드된 React project 결과물 파일들 (도메인 이후의 상대경로 설정이 달라지면 실행 불가) 예제코드 React빌드 결과물 파일들을 root에 복사해 넣(index.html파일이 root에 있게 된다)는다. sv1.js파일을 만들어 아래 코드 입력 "use strict"; const express = require('express'); const path = require('path'); const app = express(); const hostname = '127.0.0.1'; const port = 3000;..
-
npm install 명령어NodeJs 2022. 11. 20. 20:24
npm-install Install a package Table of contents Synopsis Description Configuration save save-exact global global-style legacy-bundling omit strict-peer-deps package-lock foreground-scripts ignore-scripts audit bin-links fund dry-run workspace workspaces include-workspace-root install-links Algorithm See Also Synopsis npm install [ ...] aliases: add, i, in, ins, inst, insta, instal, isnt, isnta, ..
-
express 서버 기본 예제NodeJs 2022. 11. 20. 07:18
준비 2022.11.18 - NodeJs 설치 express설치 NodeJs Express 설치 예제 코드 예제로 'text2.js'파일을 만들고 아래 내용 입력 const express = require('express'); const path = require('path'); const app = express(); const hostname = '127.0.0.1'; const port = 3000; app.listen(port, hostname, function () { console.log(`Server running at http://${hostname}:${port}/`); }); 실행 node test2.js
-
http server 기본 예제NodeJs 2022. 11. 20. 07:03
준비 2022.11.18 - NodeJs 설치 서버 예제 예제로 test1.js파일을 만들어 내용을 입력. const http = require('http'); const hostname = '127.0.0.1'; const port = 3000; const server = http.createServer((req, res) => { res.statusCode = 200; res.setHeader('Content-Type', 'text/plain'); res.end('Hello World'); }); server.listen(port, hostname, () => { console.log(`Server running at http://${hostname}:${port}/`); }); 실행 명령창에 아래 ..
-
NodeJs 설치NodeJs 2022. 11. 18. 19:12
Node.js 설치 참고 Npx Npm 오류 - npm ERR enoent ENOENT no such file or directory, lstat 'AppData\Roaming\npm' 설치 https://nodejs.org/ Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org msi파일을 받아서 설치 Nodejs를 설치하고나면 npm, npx등 명령어를 사용할 수 있다. npx는 npm에 올라가있는 package를 바로 실행해서 설치시켜주는 도구다. Npm init package.json 생성