Video fullstack using SvelteKit (Svelte) with Bootstrap and DataStax
This tutorial provides instructions on how to build a fullstack app using SvelteKit and DataStax’s cloud NoSQL database, Astra DB. The app will have features such as listing, creating, and filtering developers. It will be a single-page web app with a search bar at the top, a form to create developers, and a list of saved developers below the forms. The app will use RESTful APIs to fetch data and send POST requests to save data in the database. The tutorial highlights the use of open source tools like SvelteKit, Bootstrap, RESTful APIs, and NoSQL databases to develop versatile applications.
To install the theme and set up the app, follow the steps below:
git clone https://github.com/<repository-url>
cd <project-directory>
npm install
.env file in the project root directory and add the following lines, replacing the values with your Astra DB credentials:ASTRA_DB_ID=<astra-db-id>
ASTRA_DB_REGION=<astra-db-region>
ASTRA_DB_USERNAME=<astra-db-username>
ASTRA_DB_PASSWORD=<astra-db-password>
npm run dev
http://localhost:5000 to access the app.This tutorial guides users on building a fullstack app using SvelteKit and DataStax’s Astra DB. The app’s key features include listing developers, creating new developers using a form, and filtering developers based on various criteria. By leveraging open source tools like SvelteKit, Bootstrap, RESTful APIs, and NoSQL databases, users gain a solid foundation for developing their own application ideas into real projects.