본문 바로가기

Personal-Study55

[Next.js 13 공식 문서 App Router] - Building Your Application Building Your Application - Routing - Data Fetching - Rendering - Caching - Styling - Optimizing - Configuring - Deploying - Upgrading 2023. 8. 24.
[Next.js 13 공식 문서 App Router] - React Essentials React Essentials Server Components - Thinking in Server Components - The majority of components are non-interactive and can be rendered on the server - Next.js Server-first approach - Why Server Components? - We can move data fetching to the server - The initial page load is faster, client-side js bundle size reduced - The base client-side runtime is cacheable and predictable - All components in.. 2023. 8. 24.
[Next.js 13 공식 문서 App Router] - Getting Started Getting Started Introduction What is Next.js? - React Meta Framework Main Features - Routing: A file-system based router built on top of Server Components - Rendering: Client/Server-side-rendering, server's static/dynamic rendering, streaming - Data Fetching: async/await in Server Components, extended fetch API for request memoization/data caching/revalidation - Styling: CSS Modules, Tailwind CS.. 2023. 8. 24.
[Rust 문서 읽기] 9. Error Handling (예외 처리) The Rust Programming Language - Recoverable and Unrecoverable errors - recoverable error - ex) file not found error - type Result - unrecoverable error - ex) index out of range, ... - symptoms of bugs - immediately stop the program - Rust doesn't have exceptions - panic! macro that stops execution when the program encounters an unrecoverable error - Unrecoverable Errors with panic! - Using a pan.. 2023. 2. 18.
반응형