Developers

Integrate easyCDN in Minutes

Adding powerful content delivery capabilities to your application has never been easier. Follow our simple integration steps to get started with easyCDN today.

Try out our Dropzone

1

Installation

Install the easyCDN packages via npm or yarn

bash
npm install @easycdn/server @easycdn/react
2

Frontend Integration

Add the EasyCDN dropzone component to your React.js / Next.js application

tsx
'use client'
import { Dropzone } from '@easycdn/react'

export default function MyPage() {
  return (
    <Dropzone
      publicKey={process.env.NEXT_PUBLIC_EASYCDN_PUBLIC_KEY!}
      onUploadComplete={async ({ tempId, previewUrl }) => {
        const { asset } = await persistUpload(tempId)
        // do something with previewUrl or asset.url if desired
      }}
    />
  )
}
3

Backend Integration

Create a server action (Next.js) to persist uploaded assets

tsx
'use server'

import { createClient } from '@easycdn/server'

// NOTE: only execute this on the server, passing your Secret Key
const easyCdnServer = createClient({
  secretKey: process.env.EASYCDN_SECRET_KEY!,
})

export async function persistUpload(tempId: string) {
  // NOTE: preview is present only if the asset is an image and the project setting for creating a preview is enabled
  const { asset, preview } = await easyCdnServer.persistAsset({ tempAssetId: tempId })

  // NOTE: you can use the asset / preview to store in your database

  return { asset, preview }
}

API Keys

Your Public and Secret Keys are accessible in the Developers section of your dashboard. Keep your Secret Key secure and never expose it in client-side code.

Ready to try it out?

Sign up for an account to start generating image previews.