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

@ofi-summer-ai/create-mark

v1.1.0

Published

Scaffold a complete AI-powered marketing platform — React 19 + Vite + TypeScript + Tailwind CSS 4

Readme

@ofi-summer-ai/create-mark

npm version license node

Scaffold a complete AI-powered marketing platform in one command.


What is this?

create-mark is a project scaffolder — it creates a brand-new, fully configured marketing platform application for you. Think of it like create-react-app or create-next-app, but specifically built for the Mark marketing platform stack.

Run one command → get a complete, working project with auth, dashboard, AI chat, brand management, and a full design system already wired up.

pnpm create @ofi-summer-ai/mark my-marketing-app

When should you use this?

Use create-mark when you are starting a new project from scratch and want:

  • A full marketing/analytics dashboard application
  • An AI-powered content creation interface (chat, brand DNA, post creation)
  • A social media management and performance tracking tool
  • Any application that needs the complete Mark platform as its foundation

You do NOT need this if you already have a React project and just want to add individual UI components — for that, use @ofi-summer-ai/mark-ui instead.


create-mark vs mark-ui — which one do you need?

| | create-mark | mark-ui | |---|---|---| | What it does | Scaffolds a complete new application | Provides individual components | | Use when | Starting a new project from scratch | Adding components to an existing project | | Output | A full project directory | Importable React components | | Install | pnpm create @ofi-summer-ai/mark | pnpm add @ofi-summer-ai/mark-ui | | Includes | Everything below, pre-configured | 66 UI components + Tailwind CSS design tokens |


What you get

Running create-mark gives you a production-ready project with:

Application Screens

| Screen | Description | |--------|-------------| | Authentication | Login, register, JWT token auto-refresh | | Dashboard | KPI cards, area charts, top posts table, date range picker | | Content Creation Studio | AI chat interface, post builder, video creator | | Brand DNA | Extract and manage brand voice, color palette, tone, keywords | | Social Network Analytics | Per-platform metrics (Instagram, TikTok, Facebook, LinkedIn) | | Content Calendar | Month/week view with post scheduling |

Technical Foundation

| Layer | Technology | |-------|-----------| | Framework | React 19 + Vite 6 + TypeScript 5 | | Routing | React Router DOM 7 (lazy-loaded routes) | | Global state | Redux Toolkit (auth, brands, posts, chat) | | Server state | TanStack Query v5 (5 min stale, 10 min GC) | | Local state | Zustand (chat, post creator) | | Forms | React Hook Form + Zod validation | | UI Components | 66 components from @ofi-summer-ai/mark-ui | | Styling | Tailwind CSS 4 + shadcn/ui + Radix UI | | Animations | Framer Motion | | Charts | Recharts | | HTTP | Axios (Django client + n8n webhook client) | | Notifications | Sonner (toast) |

Pre-configured Architecture

src/
├── core/        # API clients, Redux store, routes, TanStack Query config
├── domains/     # Business logic (auth, creation-studio, dashboard, social-network)
├── modules/     # UI orchestration layer
└── shared/      # Reusable components (all from @ofi-summer-ai/mark-ui)

Design System

  • Dark mode and light mode (class-based, toggle included)
  • Material Design 3-inspired color tokens (--primary, --surface, --on-surface, etc.)
  • Full CSS variable system — override any token to match your brand
  • Responsive layout with collapsible sidebar

Quick Start

Prerequisites

  • Node.js v18 or higher
  • pnpm v10 or higher (npm install -g pnpm)

Create your project

# pnpm (recommended)
pnpm create @ofi-summer-ai/mark my-app

# npm
npm create @ofi-summer-ai/mark my-app

# yarn
yarn create @ofi-summer-ai/mark my-app

Configure and run

cd my-app

# Install dependencies
pnpm install

# Copy the environment file and fill in your API keys
cp .env.example .env

# Start the dev server
pnpm dev

Your app is now running at http://localhost:5173.


Environment Variables

After running create-mark, copy .env.example to .env and fill in these values:

| Variable | Required | Description | |----------|----------|-------------| | VITE_API_BASE_URL | Yes | Django backend URL (default: https://mark-backend-sk46.onrender.com) | | VITE_N8N_BASE_URL | Yes | n8n webhook URL for AI generation tasks | | VITE_SIA_BASE_URL | No | Proxy target for local dev |


Available Commands

Inside your generated project:

pnpm dev        # Start dev server with HMR at localhost:5173
pnpm build      # TypeScript compile + Vite production build
pnpm lint       # Run ESLint
pnpm preview    # Preview the production build locally

Component Library

All 66 UI components used in the generated project come from @ofi-summer-ai/mark-ui. They are pre-installed and configured — but if you ever need to use them individually or in another project, the component library is published separately.


Project Repository

The source code for this scaffolder and the template project:


License

MIT — OFI Summer AI