A ToDo App in Vanilla Javascript using MVC architecture, jest testing, dynamic rendering and retro styling.
- Users can add new tasks
- Users can mark tasks as completed, and this is reflected in the UI
- Completed tasks can be removed
- All tasks can be wiped
- MVC will be strictly followed
- nvm use
- npm install
- cd /src
- npm run build
- npm run http
- cd /src
- npm run test
import { v4 as uuidv4 } from 'uuid';
const uuid = uuidv4();
console.log(uuid);