
Learn to build a full stack to-do list with Solid JS and UI tools, enabling add, update, view, and delete operations via RESTful APIs, using basic JavaScript skills.
Prepare your development environment by installing Docker, setting up a relational database with an ID, installing Vapor, and cloning a Vapor todo template from GitHub to open in VS Code.
Review the project structure, including docker compose for app and db, migrations, environment variables, and the to-do model with its uid and controller routes for listing and creating todos.
Set up the todo data model with a completed boolean, update migrations, and spin up the database with docker compose to run migrations and create the todos table.
Learn to run the Vapor API by stopping and restarting docker compose, optionally wiping data with -v, then launch the app on port 8080 and verify hello world.
Implement the show method to fetch a to do by id in a Vapor app, decoding the request, using Todo.find, and handling not-found errors, with build and run steps.
Implement an update function for a to-do item, retrieving the id from request parameters and handling not found. Decode the updated content, apply changes, save, and rebuild the app.
Delete a to-do item by its ID and observe the list update, ending with an empty to-dos array after the request.
Install solid jazz, review the docs, and initialize a project with npx and npm install. Inspect the project structure, install the Hope UI package, and set up the provider.
Create a todo service in source/services with a to-do service.js file that implements CRUD operations via fetch and exports read, create, update, and delete.
Explore the Hope UI framework and its core UI components, including data entry, checkboxes, form controls, inputs, switches, buttons, and tables, to build reusable todo list interfaces.
Build a to-do item component for a table in Solid.js, wiring a checkbox, delete icon button, and props for toggle and remove, with signals, effects, and on mount.
Create a to do list component with a signal to manage state, including save, toggle completed, delete, and a refresh on mount, preparing the ui in the next video.
Build a todo list component UI by rendering a table of to-dos with for each, including toggle and remove actions, wired to API data and network calls.
Create a todo input and submit form, wire input and click events to add todos via the API, manage text state, and render an updatable, deletable todo list.
Master the delete todo operation by correctly passing the todo id, fix a missing id error, and successfully delete items in the list.
If you're tired of long courses and just want to learn basic web development this course is for you. This course was built with the goal of teaching the students how to use Swift, Vapor and SolidJs. It focuses heavily on designing a backend RESTful Web Service with CRUD functionality that sends data to a SolidJs Front End Application. This is an entry-level course that focuses on building and reinforcing some of the techniques used by developers to build a full-stack application.
In this course, we start by learning what tools you need to create a full-stack Before taking this course, it is recommended that you have an understanding of skills such as Javascript, Swift, Vapor, or ORM development. If not we'll touch on some of those topics early in the course but it is still recommended to have a better understanding.
When going through this course you may come across subjects that you are familiar with as well as those that are completely new to you.
Some of the topics touched upon include
SolidJS Hooks
SolidJs Functional Components
HTTP Requests with Fetch
CRUD Methods
Swift, Vapor
Database Migrations
ORMs
When taking this course, please know that you can take your time because you will get access to support along the way. By the time you finish this course, you should feel comfortable creating a full-stack web application with SolidJS Native and Swift, Vapor.