In this workshop, you will go thrue a step-by-step guide for building a TODO appliction using Corvid by Wix.
🔗 Useful links
- Corvid API Reference covers all of Corvid's API's.
- Corvid Home Page contains all Corvid materials.
- corvid-cli npm package for working on your own local editor.
The complete code of the application can be found in the src folder.
The workshop is based on a pre-designed template
✅ Step-by-step directions
- Go to template.
- Click
.
- Sign in to Wix.
- Let's start having fun!
This workshop is divided into four modules. Each module describes a scenario of what we're going to build and step-by-step directions to help you implement the architecture and verify your work.
Module | Description |
---|---|
Create a database collection for tasks | Store all the tasks in a dedicated collection. |
Present the tasks on the page | Present the tasks on a repeater element without writing one line of code. |
Add functionality for adding a new task | Add new tasks recods to the collection. |
Add functionality for changing the task status | Updating the tasks completed status in the colleciton. |
Uncompleted Tasks Counter | Set the status text to present the amount of uncompleted tasks. |
Tasks Filter | Filter the tasks according to the completed status. |
Clear Completed Tasks | Clear all completed tasks from the collection. |
JavaScript Web Modules | Calling server side code from the front-end |
Covid Package Manager | Package Manager to manage the npm packages in your site. |
Scheduled jobs | The Job Scheduler allows you to schedule code to run at specified intervals. |
Production | Going live. |