Skip to content
This repository was archived by the owner on Jul 6, 2022. It is now read-only.

Commit 4399d1a

Browse files
committedAug 26, 2021
feat: initial commit
0 parents  commit 4399d1a

File tree

233 files changed

+44567
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

233 files changed

+44567
-0
lines changed
 

‎.gitignore

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Misc
2+
.DS_Store
3+
4+
.env
5+
.env.local
6+
.env.development.local
7+
.env.test.local
8+
.env.production.local
9+
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
yarn.lock
15+
16+
# Dependencies
17+
node_modules
18+
19+
# Build dirs
20+
.next
21+
/build
22+
/dist
23+
/www/build
24+
25+
# Generated files
26+
.docusaurus
27+
.cache-loader
28+
www/providers.json
29+
/internals
30+
/providers
31+
/types/providers/*
32+
!types/providers/index.d.ts
33+
!types/providers/email.d.ts
34+
!types/providers/credentials.d.ts
35+
!types/providers/oauth.d.ts
36+
/adapters.d.ts
37+
/adapters.js
38+
/client.d.ts
39+
/client.js
40+
/index.d.ts
41+
/index.js
42+
/jwt.d.ts
43+
/jwt.js
44+
/errors.js
45+
/errors.d.ts
46+
/react.js
47+
/react.d.ts
48+
49+
# Development app
50+
app/next-auth
51+
app/dist/css
52+
app/package-lock.json
53+
app/yarn.lock
54+
app/prisma/migrations
55+
app/prisma/dev.db*
56+
57+
# VS
58+
/.vs/slnx.sqlite-journal
59+
/.vs/slnx.sqlite
60+
/.vs
61+
.vscode
62+
63+
# GitHub Actions runner
64+
/actions-runner
65+
/_work
66+
67+
# Prisma migrations
68+
/prisma/migrations
69+
70+
# Tests
71+
/coverage

‎README.md

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
<p align="center">
2+
<br/>
3+
<a href="https://next-auth.js.org" target="_blank"><img width="150px" src="https://next-auth.js.org/img/logo/logo-sm.png" /></a>
4+
<h3 align="center">NextAuth.js</h3>
5+
<p align="center">Authentication for Next.js</p>
6+
<p align="center">
7+
Open Source. Full Stack. Own Your Data.
8+
</p>
9+
<p align="center" style="align: center;">
10+
<a href="https://github.com/nextauthjs/next-auth/actions/workflows/release.yml?query=workflow%3ARelease">
11+
<img src="https://github.com/nextauthjs/next-auth/actions/workflows/release.yml/badge.svg" alt="Release" />
12+
</a>
13+
<a href="https://bundlephobia.com/result?p=next-auth">
14+
<img src="https://img.shields.io/bundlephobia/minzip/next-auth" alt="Bundle Size"/>
15+
</a>
16+
<a href="https://www.npmtrends.com/next-auth">
17+
<img src="https://img.shields.io/npm/dm/next-auth" alt="Downloads" />
18+
</a>
19+
<a href="https://github.com/nextauthjs/next-auth/stargazers">
20+
<img src="https://img.shields.io/github/stars/nextauthjs/next-auth" alt="Github Stars" />
21+
</a>
22+
<a href="https://www.npmjs.com/package/next-auth">
23+
<img src="https://img.shields.io/github/v/release/nextauthjs/next-auth?label=latest" alt="Github Stable Release" />
24+
</a>
25+
<img src="https://img.shields.io/github/v/release/nextauthjs/next-auth?include_prereleases&label=prerelease&sort=semver" alt="Github Prelease" />
26+
</p>
27+
</p>
28+
29+
## Overview
30+
31+
This is the documentation repository for NextAuth.js!
32+
33+
NextAuth.js is a complete open source authentication solution for [Next.js](http://nextjs.org/) applications.
34+
35+
It is designed from the ground up to support Next.js and Serverless.
36+
37+
## Contributing
38+
39+
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/next-auth/blob/canary/CONTRIBUTING.md).
40+
41+
## License
42+
43+
ISC

0 commit comments

Comments
 (0)
This repository has been archived.