| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- loop
- Material
- Tutorial
- W3Schools
- dfs
- Algorithm
- python
- 재귀
- Class
- 백준
- guide
- 문제풀이
- github
- String
- 기초
- 프로그래밍
- Unreal Engine 5
- Basic
- 시작해요 언리얼 2022
- DP
- c++
- w3school
- dynamic
- Unity
- C#
- UE5
- Programming
- 파이썬
- parameter
- 오류
- Today
- Total
목록nodeJS (3)
행복한 개구리
우선 프로토콜 문서를 따라 작성할 예정이다. 프로토콜문서는 웹서버를 개발할 때 일종의 개발 계획서 또는 개발 기획서 같은 개념이라고 한다. 이전에 수업했던 내용을 토대로 작성해보았다. 이를 바탕으로 로컬 웹 서버를 구축해보자. 우선 VSC를 켜고 사용할 폴더를 만든 다음, 해당 폴더로 경로이동하자. 그리고 npm init -y를 해주고 expresss를 깔아준다. (+nodemon 또는 supervisor는 선택) const express = require("express"); const app = express(); const moment = require("moment"); const port = 3030; app.use(express.json()); const customers = []; app.g..
Manual | Sequelize Model Querying - Basics Sequelize provides various methods to assist querying your database for data. Important notice: to perform production-ready queries with Sequelize, make sure you have read the Transactions guide as well. Transactions are important t sequelize.org -선행조건 npm 초기화 후 express, nodemon, sequelize, sequelize-auto, sequelize -cli -g, mysql2 인스톨 후 sequelize 초기화 c..
https://developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse JSON.parse() - JavaScript | MDN JSON.parse() 메서드는 JSON 문자열의 구문을 분석하고, 그 결과에서 JavaScript 값이나 객체를 생성합니다. developer.mozilla.org const express = require("express"); const initModels = require("./models/init-models"); const app = express(); app.use(express.json()); const { Op, Sequelize } = require("Sequelize"); ..