Contributing

Thanks for your interests in taking part in the project! Lucia is maintained by pilcrowOnPaper and feel free to ask questions on Discord!

Forking the project#

Prerequisites#

This repository requires Node.js version 20 and the latest version of pnpm.

Set up#

After forking the project, set up your local fork by running the following command in the root:

pnpm i

Documentation#

Writing the documentation is the most time consuming part of maintaining Lucia, so this is one of the best way to contribute! The documentation website is built with Astro.

The following types of PRs are generally accepted quickly:

Please open a feature request for anything related to the website’s functionality.

Examples#

This is also another great way to contribute to the library. The example should follow existing ones as close as possible. You can find them at lucia-auth/examples.

Source code#

For anything bigger than a bug fix, please open a new feature request or a RFC in the discussions tab on GitHub first. We appreciate your enthusiasm but we don’t want to close it immediately and waste hours of your time!

Please make the pull request as small as possible, and break them into smaller ones if possible.

Changesets#

Whenever you make a change to the source code, create a changeset by running the following in the project root:

pnpm auri add

This will create an empty changeset file in .auri directory. Fill in the blanks, for example:

---
package: "@lucia-auth/oauth"
type: "minor"
---

Adds X to Y

If you’ve added multiple changes and cannot break it into smaller PRs, create multiple changesets. Do not manually update CHANGELOG.md or package.json.

OAuth provider#

We are generally lenient on what providers we accept. However, please open a new feature request or start a new discussion on Discord or GitHub if you’re unsure (e.g. worried if the provider is too niche).

Database adapters#

Please open a new feature request or start a new discussion on Discord or GitHub before creating an official adapter. Adapters must be tested with the testing package and must pass all tests for it to be accepted.

Keep in mind that it may be more appropriate to provide the adapter from an existing adapter package instead of creating a new one.

Naming convention#

Regular adapter packages should be named @lucia-auth/adapter-X, while session adapters should be named @lucia-auth/adapter-session-X.

Style guide#

In addition, unit tests should be written for critical components.

Recommendation#