Node.js(2)
-
Node.js 활용2
21. Error.js파일이 없을떄 에러 발생은 여러 종류가 있다.import express from 'express'import fd from 'fs'import fsAsync from 'fs/promises'const app = express()app.use(express.json())//http://localhost:3000/file1app.get('file1', (req, res) => { fsAsync.readFile('/file1.txt', (err,data) => { if(err) { res.sendStatus(404) } })})//http://localhost:3000/file2app.get('file2', (req, res) => ..
2024.11.11 -
3. Node.js 활용2
Package json 파일을 서버를 돌릴시 필요하다.package.json 파일 설치1. npm init또는npm init -y 를 입력시 json 파일 생성-->{ "name": "node", "version": "1.0.0", "main": "10_console.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" }, "keywords": [], "author": "", "license": "ISC", "description": ""}2. nodemon 설치 (버전도 중요) package.json에 버전이 틀릴시 npm install nodemon --save-dev또는npm i nodemon 3. n..
2024.11.09