Skip to content

pavelee/cloudflare-challange-post-ai

Repository files navigation

Created as a submission to dev.to challange: https://dev.to/challenges/cloudflare

app

Demo

demo here: link to the demo

Getting Started

npm install
npm run dev

Open http://localhost:3000 with your browser to see the result.

Storage

By default app is using KV Cloudflare storage, but you can switch to your own!

If you would like to use your own, change exported storage object in /app/_config/storage.ts

It should impelement interface:

export interface Storage<T> {
  get: (key: string) => Promise<T>;
  set: (key: string, value: string) => Promise<void>;
  remove: (key: string) => Promise<void>;
}

About

write post with AI assistance, dev.to challenge

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published