npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

rotion

v3.0.1

Published

This is react components that uses the notion API to display the notion's database and page.

Readme

Rotion is a set of components and tools that utilize the Notion API and React to generate a static website from your Notion databases and pages.
It is designed primarily for use with Next.js (or other React frameworks) and stores images and other files locally, so that you can build a fully static site.

Official site: https://rotion.linyo.ws

Features

  • Fetch and convert Notion databases and pages into static site data via the Notion API.
  • Local storage of images, PDFs, and other files.
  • Rich React components (Gallery, Table, List, Page, and various Blocks).
  • Compatible with static site generators such as Next.js.
  • Next.js App Router support with createClientLink helper (v2.0.1+).
  • Next.js Page Router support for traditional SSG workflows.
  • TypeScript support.

Installation

npm install rotion

or

yarn add rotion

Usage

1. Set Up Notion API

Create a Notion integration and obtain your API key and database ID:

  1. Go to Notion Integrations
  2. Create a new integration
  3. Copy the integration token
  4. Share your Notion pages/databases with the integration
  5. Copy the page/database IDs from their URLs

2. Export Data

Use the APIs under rotion to fetch data from Notion:

import { FetchDatabase, FetchBlocks, FetchPage } from 'rotion'

// Fetch a database
const db = await FetchDatabase({ database_id: 'YOUR_DATABASE_ID' })

// Fetch page blocks
const blocks = await FetchBlocks({ block_id: 'YOUR_PAGE_ID' })

// Fetch page information
const page = await FetchPage({ page_id: 'YOUR_PAGE_ID' })

3. Render with React Components

Next.js App Router (v15+)

For Next.js App Router, you need to set up the createClientLink helper:

Step 1: Create app/lib/rotion.ts:

'use client'

import { createClientLink } from 'rotion/ui'
import NextLink from 'next/link'

export const ClientLink = createClientLink(NextLink)

Step 2: Use in your Server Components:

// app/page.tsx
import { Page } from 'rotion/ui'
import { FetchBlocks } from 'rotion'
import { ClientLink } from './lib/rotion'
import type { Link } from 'rotion/ui'

export default async function MyPage() {
  const blocks = await FetchBlocks({ block_id: 'YOUR_PAGE_ID' })
  return <Page blocks={blocks} link={ClientLink as Link} />
}

Next.js Page Router

For Page Router, you can use Next.js Link directly:

// pages/index.tsx
import type { GetStaticProps } from 'next'
import { Page } from 'rotion/ui'
import { FetchBlocks } from 'rotion'
import NextLink from 'next/link'

export const getStaticProps: GetStaticProps = async () => {
  const blocks = await FetchBlocks({ block_id: 'YOUR_PAGE_ID' })
  return { props: { blocks } }
}

export default function MyPage({ blocks }) {
  return <Page blocks={blocks} link={NextLink} />
}

Database Views

Display Notion databases in different formats:

import { Gallery, Table, List } from 'rotion/ui'
import { FetchDatabase } from 'rotion'

const db = await FetchDatabase({ database_id: 'YOUR_DATABASE_ID' })

// Gallery view
<Gallery db={db} keys={['Name', 'Description', 'Image']} />

// Table view
<Table db={db} keys={['Name', 'Status', 'Date']} />

// List view
<List db={db} keys={['Name', 'Tags']} />

Main Exports

Data Fetching Functions (from rotion)

  • FetchDatabase – Fetches and caches a Notion database
  • FetchBlocks – Fetches and caches page blocks
  • FetchPage – Fetches page information
  • FetchBreadcrumbs – Fetches breadcrumb information

UI Components (from rotion/ui)

Database Views:

  • Gallery – Gallery view for databases
  • Table – Table view for databases
  • List – List view for databases

Page & Blocks:

  • Page – Renders a complete Notion page
  • Various Block components (TextBlock, ImageBlock, CodeBlock, CalloutBlock, etc.)

Utilities:

  • Icon – Renders Notion icons
  • RichText – Renders Notion rich text
  • Checkbox – Renders checkboxes
  • createClientLink – Helper for Next.js App Router (v2.0.1+)

Examples

The examples/ directory contains complete working examples demonstrating Notion database integration.

Database Setup

All examples require a Notion database with the following properties:

| Property Name | Property Type | |--------------|---------------| | Title | title | | Tags | multi_select| | Date | date |

nextjs-approuter

Next.js App Router example with database support:

  • Database table view on the index page
  • Dynamic [id] routes for individual articles
  • Server Components with generateStaticParams
  • CSS Modules for styling
cd examples/nextjs-approuter
cp .env.example .env.local
# Add your NOTION_TOKEN and NOTION_DATABASE_ID
npm install
npm run dev

nextjs-pagerouter

Next.js Pages Router example with database support:

  • Database table view using getStaticProps
  • Dynamic [id] routes with getStaticPaths
  • Traditional SSG workflow
cd examples/nextjs-pagerouter
cp .env.example .env.local
# Add your NOTION_TOKEN and NOTION_DATABASE_ID
npm install
npm run dev

astro

Astro example with database support:

  • Database table view in .astro files
  • Dynamic routes with getStaticPaths
  • React components with client:load
cd examples/astro
cp .env.example .env
# Add your NOTION_TOKEN and NOTION_DATABASE_ID
npm install
npm run dev

Each example demonstrates:

  • Database table view displaying all three properties
  • Individual article pages with full content
  • Navigation between database and article views

Scripts

  • npm run build – Build.
  • npm run test – Run tests.
  • npm run story – Launch Storybook.

Requirements

  • Node.js 18 or later (recommended)
  • React 17, 18, or 19
  • Next.js 13+ (for App Router features, Next.js 15+ recommended)

License

MIT

Author

@linyows