Server Actions


Docs

Unstable (alpha)

Revalidate Tag

Key takeaways:

  • Functions with 'use server' should have serializable arguments and a serializable return value
  • There are 3 ways to call such functions (first two support progressive enhancement):
    • action prop on a form
    • formAction prop on <button>, <input type="submit">, and <input type="image"> in a form
    • startTransition
  • useOptimistic to implement optimistic updates
  • useFormStatus to get the status of a form submission
  • We can't define server actions in client components, but we can pass them as props
  • We can import server functions inside client components
  • Two ways to revalidate a page:
    • revalidatePath
    • revalidateTag
  • We can use cookies() and headers() functions in server actions
  • We can modify cookies (basically they are read-only)