Developer Portal

Build Privacy-First Apps

Join the movement. Build applications that respect user privacy by default.

Quick Start

# Install VU SDK
npm install @vuappstore/sdk

# Initialize your app
import { VuApp } from '@vuappstore/sdk';

const app = new VuApp({
  appId: 'your-app-id',
  privacyLevel: 5,
  encryption: 'aes-256-gcm'
});

// All data encrypted locally before sync
await app.encrypt(userData);
await app.sync(); // Zero-knowledge sync

VU Development Principles

Privacy by Design

Build privacy into the architecture, not as an afterthought

Zero-Knowledge

We can't access user data, even if we wanted to

Open Standards

Use open protocols and standards for interoperability

Open Source

Many of our tools and SDKs are open source. Contribute to the privacy revolution.

View on GitHub