spa 3

Section 03: Component - Driven User Interfaces - Building Interactive & Scalable UIs

The goals 💪🏻React Core Syntax & JSX ✌🏻Working with Components 👍🏻Working with Data What Are Components? And Why Is React All About Them? React is a JavaScript library for building user interfaces HTML, CSS & JavaScript are about building user interfaces as well React makes building complex, interactive and reactive user interfaces simpler React is all about "Components" -Because all user interfac..

Section 29: Deploying JavaScript Applications - From Development To Production

웹사이트의 다양한 유형 다양한 웹사이트/웹 애플리케이션을 구축할 수 있습니다. 구체적으로 구분되는 세 가지 주요 유형이 있습니다. (HTML + CSS + JS만 있는) 정적 웹사이트 단일 페이지 애플리케이션 (SPA, HTML + CSS + JS는 단 하나의 HTML 페이지만 제공되고 클라이언트 측 JS는 페이지를 동적으로 다시 렌더링하는 데 사용됩니다) 동적으로/서버 측에서 렌더링된 웹 애플리케이션. HTML 페이지가 서버에서 동적으로 생성되는 웹사이트(예: EJS와 같은 템플릿 엔진을 통해 만들어지는 웹사이트). 이 링크에서 더 자세한 비교를 볼 수 있습니다. https://academind.com/learn/web-dev/dynamic-vs-static-vs-spa/ 이러한 웹 사이트를 배포할 때..

Section 35: Building Custom (REST) APIs & Web Services - Websites Without Pages

The goals 💪🏻Why? ✌🏻Understanding REST APIs 👍🏻Building a REST API What are services & APIs? As a (Web) developer you can't build all features on your own Use paid or free thired-party services / APIs to add certain features to your app Or: Build a service / API that can be consumed by others Build a javascript package vs URL-based API Javascript Package Expose certain functions objects, methods e..