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
풀스택 서버리스: 리액트, AWS, 그래프QL을 이용한 최신 애플리케이션 개발
by
김범준
,
네이더 다빗
July 2021
Beginner to intermediate
216 pages
4h 26m
Korean
Hanbit Media, Inc.
Content preview from
풀스택 서버리스: 리액트, AWS, 그래프QL을 이용한 최신 애플리케이션 개발
59
3
장
첫 번째 애플리케이션 만들기
query {
getTodo(id: "0") {
name
completed
}
}
이 요청은 다음 응답을 반환합니다.
{
"data": {
"getTodo": {
"name": "buy groceries"
"completed": false
}
}
}
그래프
QL
서버를 구현하는 방법은 여러 가지가 있지만 이 책에서는
AWS
AppSync
를 사용
하겠습니다.
AppSync
는
Amplify
CLI
를 사용하여 그래프
QL
API
, 리졸버 및 데이터 소스를
빠르고 쉽게 배포할 수 있는 관리형 서비스입니다.
3.2
그래프
QL
API
생성
이제 그래프
QL
이 무엇인지 이해했으니 그래프
QL
을 사용하여 노트 애플리케이션을 만들어보
겠습니다.
먼저 새 리액트 애플리케이션을 만들고 필요한 종속성을 설치해야 합니다. 이 애플리케이션은
API
를 위한
AWS
Amplify
라이브러리, 고유한
id
생성을 위한
UUID
라이브러리, 스타일링
을 위한
Ant
Design
라이브러리를 사용합니다.
~ npx create-react-app notesapp
~ cd notesapp
~ npm install aws-amplify antd uuid
60
풀스택 서버리스
설치가 완료되면
Amplify
프로젝트를 만들겠습니다.
~ amplify init
? Enter a name ...
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
실전 시계열 분석: 통계와 머신러닝을 활용한 예측 기법
박찬성, 에일린 닐슨
실전 자바 소프트웨어 개발: 4가지 프로젝트로 배우는 최신 자바 개발 기법
우정은, 라울-게이브리얼 우르마, 리처드 워버턴
자바로 배우는 핵심 자료구조와 알고리즘: 기술 면접에 필요한 실용주의 자료구조와 알고리즘
유동환, 앨런 B. 다우니
웹 애플리케이션 보안: 정찰, 공격, 방어 세 단계로 배우는 웹 애플리케이션 보안의 모든 것
최용, 앤드루 호프먼
Publisher Resources
ISBN: 9791162244487