๋ฐ์ํ ์ํ์ฝ๋ฉ85 [Node.js-์ํ์ฝ๋ฉ] ํจํค์ง ๋งค๋์ ์ PM2 [์ถ์ฒ-Youtube ์ํ์ฝ๋ฉ] https://www.youtube.com/watch?v=KzjTCREOIkk&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=39 ์ฌ์ฉํ๋ ๋ชจ๋์ ๊ด๋ฆฌํ๋ ๋๊ตฌ = ํจํค์ง ๋งค๋์ โถ pm2 ์ค์นํ๊ธฐ npm install pm2 -g โถ pm2๋ฅผ ์คํํด๋ณธ๋ค. pm2 start main.js --watch VSC๋ก ํ์๋ ๋ถ๋ค์ ๋ฐ์ ๋งํฌ ์ฐธ๊ณ ! https://singa-korean.tistory.com/21 [PowerShell] VSCode ํฐ๋ฏธ๋ ์ค๋ฅ : ์ด ์์คํ ์์ ์คํฌ๋ฆฝํธ๋ฅผ ์คํํ ์ ์์ผ๋ฏ๋ก ~ .ps1 ํ์ผ์ ๋ก๋ํ VSCode ์์ npm์ ์ค์นํ๊ณ ์ฌ์ฉํ๊ณ ์ ํ ๋ ์๋์ ๊ฐ์ ์ด๋ ค์์ ๋ถ๋ช์น ์ ์๋ค. ์ด๋ ์คํฌ๋ฆฝํธ ์คํ.. 2021. 2. 6. [Node.js-์ํ์ฝ๋ฉ] JavaScript - callback [์ถ์ฒ-Youtube ์ํ์ฝ๋ฉ] https://www.youtube.com/watch?v=5GVvn9xiG5g&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=38 syntax/callback.js /* function a(){ console.log('A'); } */ var a = function(){ console.log('A'); } function slowfunc(callback){ callback(); } slowfunc(a); โ ์ค์ํ ๋ถ๋ถ!! ์ด๋ ค์ฐ๋ ๋ค์ ๋ณต์ตํ ๊ฒ 2021. 1. 29. [Node.js-์ํ์ฝ๋ฉ] ๋๊ธฐ์ ๋น๋๊ธฐ 2 [์ถ์ฒ-Youtube ์ํ์ฝ๋ฉ] https://www.youtube.com/watch?v=7woGFlMhSgk&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=37 syntax/sample.txt B syntax/sync.js var fs = require('fs'); /* //readFileSync console.log('A'); var result = fs.readFileSync('syntax/sample.txt', 'utf8'); console.log(result); console.log('C'); */ console.log('A'); fs.readFile('syntax/sample.txt', 'utf8', function(err, result){ // ํจ์๋ฅผ 3๋ฒ.. 2021. 1. 29. [Node.js-์ํ์ฝ๋ฉ] ๋๊ธฐ์ ๋น๋๊ธฐ [์ถ์ฒ-Youtube ์ํ์ฝ๋ฉ] https://www.youtube.com/watch?v=3eOGYLxropQ&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=36 ๋๊ธฐ - ์์ ์ ์์ฐจ์ ์ผ๋ก ์งํ. ์์ ์ด ์ค๋ ๊ฑธ๋ ค๋ ๋๋ ๋๊น์ง ๊ธฐ๋ค๋ ธ๋ค๊ฐ ๋ค์ ์์ ์งํ. ๋น๋๊ธฐ - ๋ณ๋ ฌ์ ์ผ๋ก ๋์์ ์ผ์ ์ฒ๋ฆฌ. ํจ์จ์ ์ด์ง๋ง ๋งค์ฐ ๋ณต์กํจ. โ Node.js๋ ๋น๋๊ธฐ์ ์ฒ๋ฆฌ๋ฅผ ํ๊ธฐ ์ํ ์ข์ ๊ธฐ๋ฅ๋ค์ ๊ฐ์ง๊ณ ์์. 2021. 1. 29. [Node.js-์ํ์ฝ๋ฉ] App ์ ์ - ํจ์๋ฅผ ์ด์ฉํด์ ์ ๋ฆฌ ์ ๋ํ๊ธฐ [์ถ์ฒ-Youtube ์ํ์ฝ๋ฉ] https://www.youtube.com/watch?v=TtVxkScVmUc&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=34 main.js var http = require('http'); var fs = require('fs'); var url = require('url'); function templateHTML(title, list, body){ return ` WEB ${list} ${body} `; } function templateList(filelist){ var list = ''; var i = 0; while(i < filelist.length){ list = list + `${filelist[i]}`; i = i .. 2021. 1. 28. [Node.js-์ํ์ฝ๋ฉ] JavaScript - ํจ์์ ์ถ๋ ฅ [์ถ์ฒ-Youtube ์ํ์ฝ๋ฉ] https://www.youtube.com/watch?v=OXGGA-rh__0&list=PLuHgQVnccGMA9QQX5wqj6ThK7t2tsGxjm&index=33 syntax/function2.js console.log(Math.round(1.6)); // 2 console.log(Math.round(1.4)); // 1 function sum(first, second){ return first+second; } console.log(sum(2,4)); return์ ๋ง๋๋ฉด ์ถ๋ ฅ ํ ํจ์๋ ์ฆ์ ์ข ๋ฃ๋๋ค. 2021. 1. 28. ์ด์ 1 ยทยทยท 7 8 9 10 11 12 13 ยทยทยท 15 ๋ค์ ๋ฐ์ํ