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

@cyguin/survey

v0.1.0

Published

Post-action micro-survey system for triggering structured 1-3 question modals

Readme

@cyguin/survey

Post-action micro-survey system. Trigger structured 1-3 question modals on specific app events (cancel flow, post-upgrade, onboarding completion) and aggregate responses server-side.

The Deal

@cyguin/survey gives you a lightweight survey system with three question types (NPS, multiple choice, short text), a drop-in React modal, and a server-side adapter interface for persistence.

Install

npm install @cyguin/survey

Requires Next.js App Router and React 18+.

Usage

Client: Trigger a survey

import { showSurvey } from '@cyguin/survey';

const result = await showSurvey('churn-survey', userId);
// result: { surveyId: string, questions: Question[] }

const closeModal = result.modal?.(); // opens the SurveyModal
// call closeModal() to programmatically dismiss

Client: useSurveyModal hook

import { useSurveyModal } from '@cyguin/survey';

function MyPage() {
  const { isOpen, open, close, modal } = useSurveyModal(
    'survey-123',
    [
      { id: 'q1', surveyId: 'survey-123', questionText: 'How likely?', questionType: 'nps', questionOrder: 1 },
    ],
    userId,
    { onComplete: (answers) => console.log(answers) }
  );

  return (
    <>
      <button onClick={open}>Take Survey</button>
      {modal}
    </>
  );
}

Server: API routes

Place these in your Next.js app router:

  • POST /api/survey/trigger — look up active survey by trigger slug
  • GET /api/survey/[surveyId] — fetch survey questions
  • POST /api/survey/[surveyId]/responses — submit answers

Adapter: wire up persistence

import { getSurveyAdapter, setSurveyAdapter } from '@cyguin/survey/adapter';

// Implement the interface
const myAdapter = {
  async findByTrigger(trigger) { /* ... */ },
  async getQuestions(surveyId) { /* ... */ },
  async saveResponses(responses) { /* ... */ },
  async getAggregate(surveyId) { /* ... */ },
};

setSurveyAdapter(myAdapter);

Exports

| Export | Type | Description | |--------|------|-------------| | SurveyModal | Component | Modal UI with all three question types | | showSurvey | Function | Client-side trigger + modal opener | | useSurveyModal | Hook | Controlled modal state hook | | SurveyModalProps | Type | Props for <SurveyModal /> | | Question | Type | Question shape | | Answer | Type | Answer shape | | QuestionType | Type | 'nps' \| 'multiple_choice' \| 'short_text' | | TriggerResponse | Type | Response from trigger API | | SubmitResponse | Type | Response from submit API | | SurveyConfig | Type | Client-side config | | getSurveyAdapter | Function | Get the current adapter | | setSurveyAdapter | Function | Set the adapter |

Configuration

interface SurveyConfig {
  autoDismissMs?: number;  // auto-dismiss after N ms (0 = disabled)
  minAnswers?: number;     // min answers to count as completed
  apiBase?: string;        // custom API base URL (defaults to relative)
}

Requirements

  • Next.js App Router (>=14)
  • React (>=18)
  • CSS custom properties (--cyguin-* tokens) for brand theming

Status

Experimental. API surface may change.

License

MIT