Authentication for Next.js
Open Source. Full Stack. Own Your Data.
## Overview This is the repository for the documentation page for Auth.js! NextAuth.js is a complete open source authentication solution for [Next.js](http://nextjs.org/) applications. This documentation site is based on the [Docusaurus](https://docusaurus.io) framework. ## Getting Started To start a local environment of this project, please do the following. 1. Clone the repo: ```sh git clone git@github.com:nextauthjs/next-auth.git cd next-auth ``` 2. Set up the correct pnpm version, using [Corepack](https://nodejs.org/api/corepack.html). Run the following in the project'a root: ```sh corepack enable pnpm ``` (Now, if you run `pnpm --version`, it should print the same verion as the `packageManager` property in the [`package.json` file](https://github.com/nextauthjs/next-auth/blob/main/package.json)) 3. Install packages. Developing requires Node.js v18: ```sh pnpm install ``` 4. Start the development server ```bash pnpm dev:docs ``` And thats all! Now you should have a local copy of this docs site running at [localhost:3000](http://localhost:3000)! ## Contributing We're open to all community contributions! If you'd like to contribute in any way, please first read our [Contributing Guide](https://github.com/nextauthjs/.github/blob/main/CONTRIBUTING.md). ## License ISC