This project provides an interactive checklist to guide aspiring developers through the roadmap of becoming a full-stack developer. The checklist includes essential skills, tools, and concepts, from front-end to back-end development, ensuring that learners can track their progress as they master various technologies. The goal of this project is to offer a clear, structured, and user-friendly interface for developers to follow their learning journey towards full-stack proficiency.
You can view the live demo of this project here.
- Interactive checklist with multiple categories (front-end, back-end, databases, etc.).
- Progress tracking for each development stage.
- Editable tasks with single-keypress saving for a smooth user experience.
- Responsive design, ensuring accessibility on all devices.
- Built using Vue.js for dynamic user interaction and Tailwind CSS for modern, responsive styling.
Berikut adalah software atau package yang perlu diinstal sebelum menjalankan proyek:
- **Any modern IDE (e.g., Visual Studio Code).
- **Node.js installed (for running the project).
- **Basic understanding of web development (HTML, CSS, JavaScript).
Langkah-langkah untuk menginstal dan menjalankan proyek ini di lingkungan lokal:
# 1. Clone repositori ini
git clone [https://github.com/Attoher/RoadtoFullStackWebsite-UsingVue-Tailwind.git]
# 2. Masuk ke direktori proyek
cd RoadtoFullStackWebsite-UsingVue-Tailwind
# 3. Install dependencies
npm install
# 4. Jalankan aplikasi
npm startBerikan gambaran singkat tentang struktur direktori proyek jika diperlukan.
RoadtoFullStack/
│
├── dist/ # Folder for build files that are ready for production
├── node_modules/ # Folder containing all dependencies installed with npm
├── index.html # Main HTML file for the application
├── package-lock.json # File that records the exact version of each package installed
├── package.json # npm configuration file defining dependencies and scripts
├── src/
│ ├── input.css # CSS file for custom styles or input-related styles
│ ├── scripts.js # JavaScript file containing the main scripts for the application
│ └── styles.css # Main folder for source code
│
├── tailwind.config.js # Configuration file for Tailwind CSS
