0.2.0 ā€¢ Published 2 months ago

@lexz451/next-nprogress v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 months ago

šŸ“ Overview

Integrate nprogress with Next.js 13. Compatible with the new app directory structure. Inspired by Next NProgress Bar


šŸš€ Getting Started

Install the package with npm:

npm install @lexz451/next-nprogress

or yarn:

yarn add @lexz451/next-nprogress

or pnpm:

pnpm add @lexz451/next-nprogress

šŸ“– Usage

Add the ProgressBar component to your app layout. It will automatically render the progress bar when a page is loading.

import { ProgressBar } from '@lexz451/next-nprogress';

export default function RootLayout({
  children,
}: {
  children: React.ReactNode
}) {
  return (
    <html lang="en">
      <head>
        <Suspense fallback={true}>
          <ProgressBar
            color='#333'
            height='2px'
            options={{
              showSpinner: false,
            }}
          />
        </Suspense>
      </head>
      <body>
        <Navbar />
        {children}
        <Footer />
      </body>
    </html>
  )
}

Use the Link component provided by next-nprogress.

import { Link } from '@lexz451/next-nprogress';

export default function Navbar() {
  return (
    <nav>
      <Link href="/">Home</Link>
      <Link href="/about">About</Link>
    </nav>
  )
}

Use the router hook provided by next-nprogress.

'use client';

import { useRouter } from '@lexz451/next-nprogress';

export default function Navbar() {
  const router = useRouter();

  return (
    <nav>
      <button onClick={() => router.push('/')}>Home</button>
      <button onClick={() => router.push('/about')}>About</button>
    </nav>
  )
}

Available props for the ProgressBar component:

PropTypeDefaultDescription
colorstring#29DThe color of the progress bar.
heightstring2pxThe height of the progress bar.
optionsobject{}The options passed to nprogress.

passing options to the progress bar:

<ProgressBar
  color='#333'
  height='2px'
  options={{
    trickleSpeed: 50,
    showSpinner: false,
  }}
/>

šŸ¤ Contributing

Contributions are always welcome! Please follow these steps: 1. Fork the project repository. This creates a copy of the project on your account that you can modify without affecting the original project. 2. Clone the forked repository to your local machine using a Git client like Git or GitHub Desktop. 3. Create a new branch with a descriptive name (e.g., new-feature-branch or bugfix-issue-123).

git checkout -b new-feature-branch
  1. Make changes to the project's codebase.
  2. Commit your changes to your local branch with a clear commit message that explains the changes you've made.
git commit -m 'Implemented new feature.'
  1. Push your changes to your forked repository on GitHub using the following command
git push origin new-feature-branch
  1. Create a new pull request to the original project repository. In the pull request, describe the changes you've made and why they're necessary. The project maintainers will review your changes and provide feedback or merge them into the main branch.

šŸ“„ License

This project is licensed under the ā„¹ļø MIT License.


0.2.0

2 months ago

0.1.6

7 months ago

0.1.5

7 months ago

0.1.1

7 months ago

0.1.0

7 months ago