Getting Started with Pulse

Build modern applications with the Pulse ecosystem. Everything you need for Next.js development in one unified system.

React 19 Ready
Next.js 15 Compatible
TypeScript First
Zero Config
4-Step Setup

Get your Pulse application running in under 5 minutes

1

Install Dependencies

Add Pulse packages to your project

pnpm add @core/ui @core/config @core/icons

Essential packages to get started with Pulse

2

Configure Next.js

Set up your next.config.ts file

import { createPulseConfig } from '@core/config';
export default createPulseConfig();

Automatic configuration with all optimizations

3

Use Components

Import and use Pulse UI components

import { Container } from '@core/ui';
import { Button } from '@core/ui/components/atoms/button';
import { Card } from '@core/ui/components/atoms/card';
export default function Page() {
  return <Button>Hello Pulse!</Button>;
}

Ready-to-use components with consistent design

4

Deploy Anywhere

Deploy to your preferred platform

pnpm build && pnpm start

Optimized builds for Vercel, Cloudflare, Docker, and more

What's Next?

Explore more features and capabilities

Starter Templates

Ready-to-use templates for different project types

Code Examples

Practical examples and implementation patterns

UI Components

Complete component library with examples