Skip to Content
For Enterprise
For Government
For Higher Ed
For Individuals
For Marketing
For Enterprise
For Government
For Higher Ed
For Individuals
For Marketing
Explore Skills
Cloud Computing
Microsoft Azure
Amazon Web Services (AWS)
Google Cloud
Cloud Migration
Cloud Deployment
Cloud Platforms
Data Engineering
Data Warehouse
SQL
Apache Spark
Microsoft SQL Server
MySQL
Kafka
Data Lake
Streaming & Messaging
NoSQL Databases
Relational Databases
Data Science
Pandas
R
MATLAB
SAS
D3
Power BI
Tableau
Statistics
Exploratory Data Analysis
Data Visualization
AI & ML
Generative AI
Machine Learning
Artificial Intelligence (AI)
Deep Learning
Reinforcement Learning
Natural Language Processing
TensorFlow
Scikit-Learn
Hyperparameter Tuning
MLOps
Programming Languages
Java
JavaScript
Spring
Python
Go
C#
C++
C
Swift
Rust
Functional Programming
Software Architecture
Object-Oriented
Distributed Systems
Domain-Driven Design
Architectural Patterns
IT/Ops
Kubernetes
Docker
GitHub
Terraform
Continuous Delivery
Continuous Integration
Database Administration
Computer Networking
Operating Systems
IT Certifications
Security
Network Security
Application Security
Incident Response
Zero Trust Model
Disaster Recovery
Penetration Testing / Ethical Hacking
Governance
Malware
Security Architecture
Security Engineering
Security Certifications
Design
Web Design
Graphic Design
Interaction Design
Film & Video
User Experience (UX)
Design Process
Design Tools
Business
Agile
Project Management
Product Management
Marketing
Human Resources
Finance
Team Management
Business Strategy
Digital Transformation
Organizational Leadership
Soft Skills
Professional Communication
Emotional Intelligence
Presentation Skills
Innovation
Critical Thinking
Public Speaking
Collaboration
Personal Productivity
Confidence / Motivation
Features
All features
Verifiable skills
AI Academy
Courses
Certifications
Interactive learning
Live events
Superstreams
Answers
Insights reporting
Radar Blog
Buy Courses
Plans
Sign In
Try Now
O'Reilly Platform
book
한 권으로 끝내는 Node & Express(2판): 모던 웹을 위한 서버 사이드 자바스크립트의 모든 것
by
한선용
,
이선 브라운
May 2021
Beginner to intermediate
448 pages
9h 47m
Korean
Hanbit Media, Inc.
Content preview from
한 권으로 끝내는 Node & Express(2판): 모던 웹을 위한 서버 사이드 자바스크립트의 모든 것
118
한 권으로 끝내는 Node & Express
})
}
})
6.10.3
API
제공
API
를 제공할 때는 폼 처리와 비슷하게 매개변수는 보통
req
.
query
에 들어 있지만
req
.
body
역시 사용할 수 있습니다.
API
에서 다른 점은 보통
JSON
이나
XML
, 평문을 반환하며 일반
적으로는 잘 쓰지 않는
PUT
,
POST
,
DELETE
같은
HTTP
메서드를 자주 사용한다는 점입니다.
API
제공에 대해서는
15
장에서 설명합니다. [예제
6
-
11
]과 [예제
6
-
12
]는 다음 여행 상품 배
열을 사용하는데, 실무에서는 일반적으로 데이터베이스에서 가져옵니다.
const tours = [
{ id: 0, name: ‘Hood River’, price: 99.99 },
{ id: 1, name: ‘Oregon Coast’, price: 149.95 },
]
NOTE
_
엔드포인트
endpoint
라는 용어는
API
에서 함수를 가리킬 때 자주 사용합니다.
예제
6-11
JSON
만 반환하는 단순한
GET
엔드포인트(
ch06
/
12
-
api
.
get
.
js
)
app.get(‘/api/tours’, (req, res) => res.json(tours))
[예제
6
-
12
]는
res
.
format
메서드를 써서 클라이언트가 선호하는 응답을 전송합니다.
예제
6-12
JSON
이나
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial
You might also like
한 권으로 끝내는 Node & Express: 웹사이트 구축을 위한 서버 사이드 자바스크립트
한성용, 이선 브라운
클라우드 네이티브를 위한 데이터 센터 네트워크 구축: 데이터 센터 네트워킹을 위한 아키텍처, 프로토콜, 도구
정기훈, 디네시 G. 더트
웹 애플리케이션 보안: 정찰, 공격, 방어 세 단계로 배우는 웹 애플리케이션 보안의 모든 것
최용, 앤드루 호프먼
자바 마이크로서비스를 활용한 SRE : 기업에서 신뢰할 수 있는 마이크로서비스를 위한 패턴
조너선 슈나이더
Publisher Resources
ISBN: 9791162244227