๋ด๋ณด๋ด๋ฒ(๋ด๊ฐ ๋ณด๋ ค๊ณ ๋ด๊ฐ ๋ฒ์ญํ...) Next.js docs
2021๋ 8์ 2์ผ ๊ธฐ์ค Next.js ๊ณต์ ๋ฌธ์๋ฅผ ๋ฒ์ญํ๋ค.
โป ์์ด ์ ๊ณต์๋ ํด์ธ ์ ํํ๋ ์๋๊ธฐ์ ๋ฒ์ญ์๋ ์์ญ, ์ค์ญ, ๊ตฌ๊ธ ๋ฒ์ญ์ด ๋ฌด์ํ ๋ง์ ์ ์์ผ๋ฉฐ, ํผ์ ๊ณต์๋ฌธ์๋ฅผ ์ฐธ์กฐํด๊ฐ๋ฉฐ ๋ฒ์ญํ๋ค ๋ณด๋ ์คํ๋ ๋ง์ ์ ์๋ค. ์ ํํ ๋ด์ฉ์ ๊ณต์๋ฌธ์๋ฅผ ์ง์ ์ดํด๋ณด๊ฑฐ๋ ๋ค๋ฅธ ์ ๋ณด๋ค์ ๋ ์ฐพ์๋ณด๋ ๊ฒ์ ์ถ์ฒํ๋ค.
(ํ์ง๋ง ๋๊ธ ํผ๋๋ฐฑ๋ ํ์ํฉ๋๋ค๐ )
Next.js ๊ณต์๋ฌธ์ ํ์ธํ๊ธฐ>>
Authentication verifies who a user is, while authorization controls what a user can access. Next.js supports multiple authentication patterns, each designed for different use cases. This page will go through each case so that you can choose based on your constraints.
Authentication(์ธ์ฆ)์ ๋๊ฐ ์ฌ์ฉ์์ธ์ง๋ฅผ ์ฆ๋ช ํ๋ ๋ฐ๋ฉด authorization(๊ถํ๋ถ์ฌ)์ ์ฌ์ฉ์๊ฐ ๋ฌด์์ ์ ๊ทผํ ์ ์๋์ง๋ฅผ ์ ์ดํ๋ค. Next.js๋ ๊ฐ๊ฐ ๋ค๋ฅธ ์ฌ์ฉ ์ฌ๋ก๋ฅผ ์ํด ์ค๊ณ๋ ์ฌ๋ฌ ์ธ์ฆ ํจํด์ ์ ๊ณตํ๋ค. ์ด ํ์ด์ง๋ ๋น์ ์ด ์์ ์ ์ ์ฝ์ฌํญ์ ๊ทผ๊ฑฐํ์ฌ ์ ํํ ์ ์๋๋ก ๊ฐ ์ฌ๋ก๋ค์ ๋ํด ์ดํด๋ณผ ๊ฒ์ด๋ค.
Authentication pattern
The first step to identifying which authentication pattern you need is understanding the data-fetching strategy you want. We can then determine which authentication providers support this strategy. There are two main patterns:
- Use static generation to server-render a loading state, followed by fetching user data client-side.
- Fetch user data server-side to eliminate a flash of unauthenticated content.
์์ ์๊ฒ ์ด๋ค ์ธ์ฆ ํจํด์ด ํ์ํ์ง๋ฅผ ์๋ณํ๊ธฐ ์ํ ์ฒซ ๋ฒ์งธ ๋จ๊ณ๋ ๋น์ ์ด ์ํ๋ ๋ฐ์ดํฐ ํจ์นญ ์ ๋ต์ ์ดํดํ๋ ๊ฒ์ด๋ค. ๊ทธ๋ค์ ์ด ์ ๋ต์ ์ง์ํ๋ ์ธ์ฆ ์ ๊ณต์๋ฅผ ๊ฒฐ์ ํ ์ ์๋ค. ์๋๋ ๋ ๊ฐ์ง ์ฃผ๋ ํจํด์ด๋ค:
- ์ ์ ์์ฑ์ ์ฌ์ฉํ์ฌ ๋ก๋ฉ ์ํ๋ฅผ ์๋ฒ ๋ ๋๋ง ํ๊ณ ๋ค์ด์ด ์ฌ์ฉ์ ๋ฐ์ดํฐ๋ฅผ ํด๋ผ์ด์ธ์ธ ์ธก์์ ๊ฐ์ ธ์ด
- ์ธ์ฆ๋์ง ์์ ์ปจํ ์ธ ์ ๊น๋ฐ์์ ์ ๊ฑฐํ๊ธฐ ์ํด์ ์๋ฒ ์ธก์์ ์ฌ์ฉ์ ๋ฐ์ดํฐ๋ฅผ ๊ฐ์ ธ์ด
Authenticating Statically Generated Pages
Next.js automatically determines that a page is static if there are no blocking data requirements. This means the absence of getServerSideProps and getInitialProps in the page. Instead, your page can render a loading state from the server, followed by fetching the user client-side.
Next.js๋ ํ์ด์ง์ ์ค๊ฐ์ ๊ฐ๋ก๋ง๋ ๋ฐ์ดํฐ ์๊ตฌ์ฌํญ์ด ์์ผ๋ฉด ์ ์ ์ด๋ผ๊ณ ์๋์ผ๋ก ํ๋จํ๋ค. ์ด๊ฒ์ ํ์ด์ง์ getServerSideProps์ getInitialProps ๊ฐ ์๋ค๋ ์๋ฏธ์ด๋ค. ๋์ ์ ํ์ด์ง๊ฐ ์๋ฒ๋ก๋ถํฐ ๋ก๋ฉ ์ํ๋ฅผ ๋ ๋๋งํ๊ณ ๋์ ํด๋ผ์ด์ธํธ ์ธก์์ ์ฌ์ฉ์๋ฅผ ๊ฐ์ ธ์ฌ ์ ์๋ค.
One advantage of this pattern is it allows pages to be served from a global CDN and preloaded using next/link. In practice, this results in a faster TTI (Time to Interactive).
์ด ํจํด์ ์ฅ์ ํ ๊ฐ์ง๋ ํ์ด์ง๋ค์ด ๊ธ๋ก๋ฒ CDN์ผ๋ก๋ถํฐ ์ ๊ณต๋๊ณ next/link๋ฅผ ์ฌ์ฉํ์ฌ ํ๋ฆฌ๋ก๋ ๋ ์ ์๋ค๋ ์ ์ด๋ค. ์ค์ ๋ก ๋ ๋น ๋ฅธ TTI(Time to Interactive)๋ฅผ ๋ณด์ฌ์ค๋ค.
Let's look at an example for a profile page. This will initially render a loading skeleton. Once the request for a user has finished, it will show the user's name:
ํ๋กํ ํ์ด์ง ์์ ๋ฅผ ์ดํด๋ณด์. ์ด ํ์ด์ง๋ ์ฒ์์ ๋ก๋ฉ ์ค์ผ๋ ํค์ ๋ ๋ํ๋ค. ์ฌ์ฉ์์ ๋ํ ์์ฒญ์ด ๋๋๋ฉด ์ฌ์ฉ์์ ์ด๋ฆ์ ๋ณด์ฌ์ค๋ค.
// pages/profile.js
import useUser from '../lib/useUser'
import Layout from '../components/Layout'
const Profile = () => {
// Fetch the user client-side
const { user } = useUser({ redirectTo: '/login' })
// Server-render loading state
if (!user || user.isLoggedIn === false) {
return <Layout>Loading...</Layout>
}
// Once the user request finishes, show the user
return (
<Layout>
<h1>Your Profile</h1>
<pre>{JSON.stringify(user, null, 2)}</pre>
</Layout>
)
}
export default Profile
You can view this example in action. Check out the with-iron-session example to see how it works.
์ด ์์ ๊ฐ ๋์ํ๋ ๊ฒ์ ๋ณผ ์ ์๋ค. ์ด๋ป๊ฒ ๋์ํ๋์ง๋ฅผ ๋ณด๋ ค๋ฉด with-iron-session ์์ ๋ฅผ ํ์ธํด๋ณด๋ผ.
Authenticating Server-Rendered Pages
If you export an async function called getServerSideProps from a page, Next.js will pre-render this page on each request using the data returned by getServerSideProps.
ํ์ด์ง์์ getServerSideProps๋ผ๋ ๋น๋๊ธฐ ํจ์๋ฅผ exportํ๋ค๋ฉด, Next.js๋ ์ด ํ์ด์ง๋ฅผ ๊ฐ ์์ฒญ๋ง๋ค getServerSideProps์์ ๋ฐ์ ๋ฐ์ดํฐ๋ฅผ ์ฌ์ฉํ์ฌ ํ๋ฆฌ๋ ๋ ํ๋ค.
export async function getServerSideProps(context) {
return {
props: {}, // Will be passed to the page component as props
}
}
Let's transform the profile example to use server-side rendering. If there's a session, return user as a prop to the Profile component in the page. Notice there is not a loading skeleton in this example.
ํ๋กํ ์์ ๋ฅผ ์๋ฒ ์ธก ๋ ๋๋ง์ผ๋ก ๋ฐ๊ฟ๋ณด์. ์ธ์ ์ด ์๋ค๋ฉด ํ์ด์ง์ Profile ์ปดํฌ๋ํธ์ ์ฌ์ฉ์๋ฅผ prop์ผ๋ก ๋ฐํํ๋ผ. ์ด ์์ ์์๋ ๋ก๋ฉ ์ค์ผ๋ ํค์ด ์๋ค๋ ๊ฒ์ ์ ์ํ๋ผ.
// pages/profile.js
import withSession from '../lib/session'
import Layout from '../components/Layout'
export const getServerSideProps = withSession(async function ({ req, res }) {
// Get the user's session based on the request
const user = req.session.get('user')
if (!user) {
return {
redirect: {
destination: '/login',
permanent: false,
},
}
}
return {
props: { user },
}
})
const Profile = ({ user }) => {
// Show the user. No loading state is required
return (
<Layout>
<h1>Your Profile</h1>
<pre>{JSON.stringify(user, null, 2)}</pre>
</Layout>
)
}
export default Profile
An advantage of this pattern is preventing a flash of unauthenticated content before redirecting. It's important to note fetching user data in getServerSideProps will block rendering until the request to your authentication provider resolves. To prevent creating a bottleneck and decreasing your TTFB (Time to First Byte), you should ensure your authentication lookup is fast. Otherwise, consider static generation.
์ด ํจํด์ ์ฅ์ ์ ๋ฆฌ๋ค์ด๋ ํ ์ ์ ์ธ์ฆ๋์ง ์์ ์ปจํ ์ธ ์ ๊น๋ฐ์์ ๋ฐฉ์งํ ์ ์๋ค๋ ๊ฒ์ด๋ค. getServerSideProps์์ ์ฌ์ฉ์ ๋ฐ์ดํฐ๋ฅผ ๊ฐ์ ธ์ค๋ ๊ฒ์ ์ธ์ฆ ์ ๊ณต์์ ๋ํ ์์ฒญ์ด ํด๊ฒฐ๋ ๋๊น์ง ๋ ๋๋ง์ด ์ฐจ๋จ๋๋ค๋ ๊ฒ์ ์์๋๋ ๊ฒ์ ์ค์ํ๋ค. ๋ณ๋ชฉ๊ตฌ๊ฐ์ด ์๊ธฐ๋ ๊ฒ์ ๋ฐฉ์งํ๊ณ TTFB๋ฅผ ์ค์ด์ง ์ํด์๋ ์ธ์ฆ ์กฐํ๊ฐ ๋น ๋ฅธ์ง ํ์ธํด์ผ ํ๋ค. ๊ทธ๋ ์ง ์๋ค๋ฉด ์ ์ ์์ฑ์ ๊ณ ๋ คํด๋ณด๋ผ.
Authentication Providers
Now that we've discussed authentication patterns, let's look at specific providers and explore how they're used with Next.js.
์ง๊ธ๊น์ง ์ธ์ฆ ํจํด์ ๋ํด ์ด์ผ๊ธฐ ๋๋์ด๋ดค๋ค. ์ด์ ํน์ ์ ๊ณต์์ ๋ํด์ Next.js์ ์ด๋ป๊ฒ ์ฌ์ฉ๋ ์ ์๋์ง ์์๋ณด์.
Bring Your Own Database
Examples
If you have an existing database with user data, you'll likely want to utilize an open-source solution that's provider agnostic.
- If you want a low-level, encrypted, and stateless session utility use next-iron-session.
- If you want a full-featured authentication system with built-in providers (Google, Facebook, GitHub…), JWT, JWE, email/password, magic links and more… use next-auth.
์ฌ์ฉ์ ๋ฐ์ดํฐ๊ฐ ์๋ ๊ธฐ์กด ๋ฐ์ดํฐ๋ฒ ์ด์ค๋ฅผ ๊ฐ์ง๊ณ ์๋ค๋ฉด ๊ณต๊ธ์์ ๊ตฌ์ ๋ฐ์ง ์๋ ์คํ์์ค ์๋ฃจ์ ์ ํ์ฉํ๊ณ ์ถ์ ๊ฒ์ด๋ค.
- low-level, ์ํธํ๋์ด์๊ณ , ๋ฌด์ํ์ฑ ์ธ์ ์ ํธ๋ฆฌํฐ๋ฅผ ์ํ๋ค๋ฉด next-iron-session์ ์ฌ์ฉํ๋ผ.
- ๋ด์ฅ๋ ์ ๊ณต์(๊ตฌ๊ธ, ํ์ด์ค๋ถ, ๊นํ...), JWT, JWE, ์ด๋ฉ์ผ/์ํธ, ๋งค์ง ๋งํฌ์ ๊ทธ ๋ฐ์ ๋ชจ๋ ๊ธฐ๋ฅ์ ๊ฐ์ถ ์ธ์ฆ ์์คํ ์ ์ํ๋ค๋ฉด next-auth๋ฅผ ์ฌ์ฉํ๋ผ.
Both of these libraries support either authentication pattern. If you're interested in Passport, we also have examples for it using secure and encrypted cookies:
๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ ๋ชจ๋ ์์์ ์ดํด๋ณธ ๋ ๊ฐ์ง ์ธ์ฆ ํจํด์ ์ ๊ณตํ๋ค. Passport์ ๊ด์ฌ์ด ์๋ค๋ฉด secure, ์ํธํ๋ ์ฟ ํค๋ฅผ ์ฌ์ฉํ๋ ์์ ๋ ์๋ค.
Other Providers
To see examples with other authentication providers, check out the examples folder.
๋ค๋ฅธ ์ธ์ฆ ์ ๊ณต์๋ค์ ์์ ๋ค์ ์ดํด๋ณด๋ ค๋ฉด examples ํด๋๋ฅผ ํ์ธํด๋ณด๋ผ.
Examples
'Next.js' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ด๋ณด๋ด๋ฒ] Understanding Next.js Data Fetching (CSR, SSR, SSG, ISR) (0) | 2022.03.06 |
---|---|
[๋ด๋ณด๋ด๋ฒ] Next.js docs - Dynamic Import (2) | 2021.08.03 |
[๋ด๋ณด๋ด๋ฒ] Next.js docs - Deployment (0) | 2021.07.11 |
[๋ด๋ณด๋ด๋ฒ] Next.js docs - Response Helpers (0) | 2021.04.17 |
[๋ด๋ณด๋ด๋ฒ] Next.js docs - API Middlewares (0) | 2021.04.17 |