@lineuxyz/next-auth-server-side
TypeScript icon, indicating that this package has built-in type declarations

1.0.5 • Public • Published

next-auth-server-side: SSR Authentication Helper

Next auth server side is a library designed to facilitate server-side rendered authentication with Next.js. It helps developers handle authentication tokens, catch request errors, and manage redirections seamlessly.

Installation

To install the library:

NPM

npm install @lineuxyz/next-auth-server-side --save

Yarn

yarn add @lineuxyz/next-auth-server-side --save

Usage

Here's a practical example of how to use the library:

import { serverSideAuthenticated } from "@lineuxyz/next-auth-server-side";

export const getServerSideProps = serverSideAuthenticated(
  async () => {
    const response = await axios.get('/your-path')
    return { props: { yourData: response } };
  },
  {
    cookieName: "your-cookie-name",
    // Other configuration options...
  }
);

Configuration Properties

Property Name Required Description
cookieName Yes Name of the cookie that contains the token.
tokenFailed No Configuration for redirection when token retrieval fails. Details below.
requestFailed No Configuration for redirection when a request fails. Details below.

tokenFailed & requestFailed Details

Property Name Default Description
destinationUrl / Redirect URL.
isPermanent false Whether the redirection is permanent.
statusCode - HTTP status code for redirection (e.g., `302`).

Contributing

We welcome contributions from developers! If you'd like to contribute, here's how you can get started:

  1. Fork the Repository: Fork the @lineuxyz/next-auth-server-side repository to your own GitHub account.
  2. Clone the Forked Repository: Clone your fork locally on your machine.
  3. Install Dependencies: Navigate to the project root and run npm install or yarn add.
  4. Make Your Changes: Implement your features or fixes.
  5. Test Your Changes: Ensure that your changes do not introduce any bugs.
  6. Submit a Pull Request: Once done, push your changes to your fork on GitHub and submit a pull request.

License

MIT

Package Sidebar

Install

npm i @lineuxyz/next-auth-server-side

Weekly Downloads

1

Version

1.0.5

License

MIT

Unpacked Size

8.38 kB

Total Files

4

Last publish

Collaborators

  • lineuxyz