Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@immersive-scroll/next

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@immersive-scroll/next

Next.js adapter for immersive scroll video.

latest
Source
npmnpm
Version
0.1.2
Version published
Maintainers
1
Created
Source

@immersive-scroll/next

Client-only wrappers for using immersive scroll inside Next.js applications. This package keeps the integration surface explicit for App Router projects while reusing the React adapter underneath.

Install

pnpm add @immersive-scroll/next

Exports

  • NextImmersiveScroll: client-only alias of the React ImmersiveScroll component.
  • NextImmersiveProvider: client-only alias of the React provider.
  • createImmersiveDynamicComponent(): helper for dynamic client-only loading.
  • ensureClient() and withImmersiveClientOnly(): guards for client boundaries.

Quick start

'use client';

import { NextImmersiveScroll } from '@immersive-scroll/next';

export default function ProductHero() {
  return (
    <NextImmersiveScroll framesPath="/immersive/hero">
      <section>Story content</section>
    </NextImmersiveScroll>
  );
}

Notes

  • Use this package for Next-specific boundaries. For component APIs and hooks, the underlying source of truth is still @immersive-scroll/react.
  • The package is intended for client components and client-only wrappers, not server rendering.

FAQs

Package last updated on 21 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts