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

@mbc-cqrs-serverless/survey-web

v0.0.44

Published

Survey components library for MBC CQRS Serverless Survey Web

Downloads

480

Readme

@mbc-cqrs-serverless/survey-web

A comprehensive React component library for building dynamic surveys and forms, built for Next.js applications.

Features

  • 🎨 Modern UI Components - Built with Radix UI and Tailwind CSS
  • 📝 Dynamic Survey Builder - Create surveys with drag-and-drop interface
  • 🔧 Multiple Question Types - Short text, long text, single/multiple choice, linear scale, rating, date, time
  • Advanced Validation - Custom validation rules with Zod schema validation
  • 🔄 Real-time Updates - AWS AppSync integration for live data synchronization
  • 📱 Responsive Design - Mobile-first approach with responsive layouts
  • 🎯 TypeScript Support - Full TypeScript support with comprehensive type definitions

Installation

npm install @mbc-cqrs-serverless/survey-web

Environment Variables Setup

Required Environment Variables

Create a .env.local file in your Next.js project root with the following variables:

# AWS AppSync Configuration
NEXT_PUBLIC_AWS_APPSYNC_GRAPHQLENDPOINT=https://your-appsync-endpoint.amazonaws.com/graphql
NEXT_PUBLIC_AWS_APPSYNC_APIKEY=your-appsync-api-key
NEXT_PUBLIC_AWS_APPSYNC_REGION=us-east-1

# API Configuration
NEXT_PUBLIC_API_URL=https://your-api-endpoint.com
NEXT_PUBLIC_TENANT_CODE=your-tenant-code

# AWS Amplify Configuration (if using Cognito authentication)
NEXT_PUBLIC_AWS_REGION=us-east-1
NEXT_PUBLIC_AWS_USER_POOL_ID=your-user-pool-id
NEXT_PUBLIC_AWS_USER_POOL_WEB_CLIENT_ID=your-client-id

Environment Variables Explained

| Variable | Description | Required | | ----------------------------------------- | ----------------------------------------------- | -------- | | NEXT_PUBLIC_AWS_APPSYNC_GRAPHQLENDPOINT | Your AWS AppSync GraphQL endpoint URL | ✅ | | NEXT_PUBLIC_AWS_APPSYNC_APIKEY | Your AWS AppSync API key for authentication | ✅ | | NEXT_PUBLIC_AWS_APPSYNC_REGION | AWS region where your AppSync API is deployed | ✅ | | NEXT_PUBLIC_API_URL | Base URL for your REST API endpoints | ✅ | | NEXT_PUBLIC_TENANT_CODE | Tenant identifier for multi-tenant applications | ✅ | | NEXT_PUBLIC_AWS_REGION | AWS region for Amplify configuration | Optional | | NEXT_PUBLIC_AWS_USER_POOL_ID | Cognito User Pool ID for authentication | Optional | | NEXT_PUBLIC_AWS_USER_POOL_WEB_CLIENT_ID | Cognito User Pool Web Client ID | Optional |

Usage

1. Basic Setup

First, import the CSS styles in your Next.js application:

// pages/_app.tsx or app/layout.tsx
import '@mbc-cqrs-serverless/survey-web/styles.css'

2. Survey Template Management

import { SurveyTemplatePage } from '@mbc-cqrs-serverless/survey-web/SurveyTemplatePage'

export default function SurveyTemplates() {
  return <SurveyTemplatePage />
}

3. Edit Survey Template

import { EditSurveyTemplatePage } from '@mbc-cqrs-serverless/survey-web/EditSurveyTemplatePage'

export default function EditSurvey({ params }: { params: { id: string } }) {
  return <EditSurveyTemplatePage id={params.id} />
}

4. Survey Form (Public-facing)

import { SurveyForm } from '@mbc-cqrs-serverless/survey-web/SurveyForm'

export default function Survey({ params }: { params: { id: string } }) {
  return <SurveyForm surveyId={params.id} />
}

Question Types

The library supports various question types:

Text Questions

  • Short Text - Single line text input with validation
  • Long Text - Multi-line text input (paragraph)

Choice Questions

  • Single Choice - Radio buttons with conditional logic
  • Multiple Choice - Checkboxes with min/max selection
  • Dropdown - Select dropdown with options

Scale Questions

  • Linear Scale - Numeric scale with custom min/max
  • Rating - Star/heart/thumb rating system

Date/Time Questions

  • Date - Date picker with optional time
  • Time - Time picker for time or duration

Validation Rules

Text Validation

{
  validation: {
    required: true,
    custom: {
      type: "length",
      rule: "min",
      value: 5,
      customError: "Minimum 5 characters required"
    }
  }
}

Number Validation

{
  validation: {
    custom: {
      type: "number",
      rule: "between",
      value: 18,
      value2: 65,
      customError: "Age must be between 18 and 65"
    }
  }
}

Email Validation

{
  validation: {
    custom: {
      type: "text",
      rule: "is_email",
      customError: "Please enter a valid email address"
    }
  }
}

API Integration

The library automatically handles:

  • Authentication - AWS Amplify session tokens
  • GraphQL Queries - AppSync integration for real-time data
  • REST API Calls - Axios-based HTTP client with interceptors
  • Error Handling - Comprehensive error management

Development

Building the Package

npm run build

Development Mode

npm run dev

Type Checking

npm run type-check

Peer Dependencies

Make sure you have these peer dependencies installed:

npm install next@^14.0.0 react@^18.0.0 react-dom@^18.0.0

Documentation

For detailed documentation, guides, and API reference, visit the official documentation site:

License

MIT © Murakami Business Consulting, Inc.

Support

For issues and questions, please visit our GitHub repository.