{"id":26717785,"url":"https://github.com/sincanmaulanaa/notesfly","last_synced_at":"2026-05-06T07:33:50.061Z","repository":{"id":284594204,"uuid":"955446274","full_name":"sincanmaulanaa/notesfly","owner":"sincanmaulanaa","description":"The first submission project of Fundamental Front End Web Development from Dicoding Academy","archived":false,"fork":false,"pushed_at":"2025-03-26T16:58:54.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T17:44:22.705Z","etag":null,"topics":["dicoding-academy","dicoding-submission","javascript","notes-app","webcomponents"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sincanmaulanaa.png","metadata":{"files":{"readme":"README.MD","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-26T16:46:13.000Z","updated_at":"2025-03-26T17:00:29.000Z","dependencies_parsed_at":"2025-03-26T17:44:25.829Z","dependency_job_id":"e3bf8b8f-8ea1-46da-a93d-994ff63f03eb","html_url":"https://github.com/sincanmaulanaa/notesfly","commit_stats":null,"previous_names":["sincanmaulanaa/notesfly"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sincanmaulanaa%2Fnotesfly","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sincanmaulanaa%2Fnotesfly/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sincanmaulanaa%2Fnotesfly/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sincanmaulanaa%2Fnotesfly/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sincanmaulanaa","download_url":"https://codeload.github.com/sincanmaulanaa/notesfly/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245879947,"owners_count":20687459,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dicoding-academy","dicoding-submission","javascript","notes-app","webcomponents"],"created_at":"2025-03-27T16:23:48.616Z","updated_at":"2026-05-06T07:33:50.056Z","avatar_url":"https://github.com/sincanmaulanaa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"### Notes App (notesfly)\n\nA modern, responsive note-taking web application built with vanilla JavaScript, HTML, and CSS. NotesApp allows users to create, search, and organize notes with a clean and intuitive interface.\n\n## Features\n\n- **Responsive Design**: Works seamlessly on desktop, tablet, and mobile devices\n- **Dark/Light Mode**: Toggle between dark and light themes\n- **Real-time Validation**: Form validation with instant feedback\n- **Search Functionality**: **Quickly** find notes by title or content\n- **View Toggles**: Switch between grid and list views\n- **Persistent Storage**: Notes and preferences are saved to local storage\n- **Mobile-friendly Navigation**: Hamburger menu for mobile devices\n\n## Technologies Used\n\n- HTML5 Custom Elements\n- CSS3 with modern features (Grid, Flexbox, Variables)\n- Vanilla JavaScript (ES6+)\n- Local Storage API\n- Responsive Design Principles\n\n## Installation\n\n1. Clone the repository:\n\n```shellscript\ngit clone https://github.com/sincanmaulanaa/notesfly.git\n```\n\n2. Navigate to the project directory:\n\n```shellscript\ncd notesfly\n```\n\n3. Open the project in your preferred code editor.\n4. Launch the application using a local server or by opening `index.html` in your browser.\n\n## Usage\n\n### Creating Notes\n\n1. Enter a title (minimum 3 characters)\n2. Write your note content (minimum 10 characters)\n3. Click \"Add Note\" to save\n\n### Searching Notes\n\n1. Use the search bar in the app bar to filter notes\n2. Notes will be filtered in real-time as you type\n\n### Changing Views\n\n- Click the grid/list toggle button to switch between views\n\n### Toggling Dark Mode\n\n- Click the sun/moon icon to switch between light and dark themes\n\n## Project Structure\n\n```plaintext\nnotesfly/\n├── index.html\n├── src/\n│   ├── scripts/\n│   │   ├── component.js\n│   │   └── app.js\n│   └── styles/\n│       └── style.css\n└── assets/\n    └── app-icon.png\n    └── screenshot.png\n```\n\n## Features in Detail\n\n### Custom Web Components\n\nThe application uses custom web components for modularity and reusability:\n\n- `\u003capp-bar\u003e`: Navigation and app controls\n- `\u003cnote-form\u003e`: Form for creating new notes\n- `\u003cnote-list\u003e`: Container for displaying notes\n- `\u003cnote-item\u003e`: Individual note display\n\n### Real-time Form Validation\n\nThe form validation system provides immediate feedback:\n\n- Title validation (3-50 characters)\n- Body validation (10-500 characters)\n- Visual indicators for valid/invalid states\n- Descriptive error messages\n- Submit button disabled until all fields are valid\n\n### Responsive Design\n\nThe app adapts to different screen sizes:\n\n- Desktop: Full navigation and multi-column note grid\n- Tablet: Adjusted layout with two-column note grid\n- Mobile: Hamburger menu navigation and single-column notes\n\n### Theme Support\n\nThe application supports both light and dark themes:\n\n- System preference detection\n- Manual toggle option\n- Persistent theme preference\n- Smooth transition between themes\n\n## Screenshots\n\n![Desktop Version](src/assets/screenshot.png)\n\n## Future Improvements\n\n- Note editing functionality\n- Categories/tags for notes\n- Cloud synchronization\n- Rich text formatting\n- Attachments support\n- Export/import functionality\n- Collaborative notes\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n## License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## Acknowledgments\n\n- Icons provided by [Lucide Icons](https://lucide.dev/)\n- Font: Poppins from Google Fonts\n- Inspiration from modern note-taking applications\n\n---\n\n_This project was created as a demonstration of vanilla JavaScript, HTML, and CSS capabilities without relying on frameworks or libraries._\n\n\u003e Built with love by [@sincanmaulanaa](https://github.com/sincanmaulanaa)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsincanmaulanaa%2Fnotesfly","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsincanmaulanaa%2Fnotesfly","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsincanmaulanaa%2Fnotesfly/lists"}