A simple guestbook Sveltekit app, using MongoDB for persistence
You can start a local MongoDB server with Docker:
docker run --name my-mongodb -p 27017:27017 --rm -it mongo
Once you have installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Check the sveltekit documentation for more details.