{"id":20448793,"url":"https://github.com/fyzanshaik/note-app-go","last_synced_at":"2026-04-20T07:05:27.171Z","repository":{"id":221645369,"uuid":"754973924","full_name":"fyzanshaik/Note-App-Go","owner":"fyzanshaik","description":"Go-NoteApp is a lightweight note-taking web application built with Go. Create, view, edit, and manage your notes effortlessly. Accessible from any device with a web browser. 📝","archived":false,"fork":false,"pushed_at":"2024-08-09T10:56:05.000Z","size":11398,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-05T09:17:08.550Z","etag":null,"topics":["backend","golang"],"latest_commit_sha":null,"homepage":"","language":"Go","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/fyzanshaik.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":"2024-02-09T06:33:46.000Z","updated_at":"2024-08-09T10:56:09.000Z","dependencies_parsed_at":"2024-08-09T12:05:05.828Z","dependency_job_id":"a65f9992-234c-4752-b00e-377c22bf1778","html_url":"https://github.com/fyzanshaik/Note-App-Go","commit_stats":null,"previous_names":["fyzanshaik/note-app-go"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fyzanshaik/Note-App-Go","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fyzanshaik%2FNote-App-Go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fyzanshaik%2FNote-App-Go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fyzanshaik%2FNote-App-Go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fyzanshaik%2FNote-App-Go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fyzanshaik","download_url":"https://codeload.github.com/fyzanshaik/Note-App-Go/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fyzanshaik%2FNote-App-Go/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32036803,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T00:18:06.643Z","status":"online","status_checked_at":"2026-04-20T02:00:06.527Z","response_time":94,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["backend","golang"],"created_at":"2024-11-15T10:36:59.612Z","updated_at":"2026-04-20T07:05:27.152Z","avatar_url":"https://github.com/fyzanshaik.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Go-NoteApp: A Simple Note-Taking Web Application\n\nWelcome to Go-NoteApp, a straightforward and efficient note-taking web application built with Go! This application allows you to create, view, edit, and manage your notes effortlessly. Whether you're\na developer, student, or professional, you'll find Go-NoteApp to be a handy tool for organizing your thoughts and ideas. 📝\n\n## Features\n\n-  **📝 Create and Edit Notes**: Easily create new notes and edit existing ones.\n-  **👀 View Notes**: View the contents of your notes in a user-friendly interface.\n-  **💼 Manage Notes**: Organize and manage your notes efficiently.\n-  **🔐 Secure**: Ensure the security of your notes with local storage.\n-  **🌐 Cross-Platform**: Access your notes from any device with a web browser.\n\n## Getting Started\n\nTo get started with Go-NoteApp, follow these steps:\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/your-username/go-noteapp.git\n```\n\n### 2. Navigate to Project Directory\n\n```bash\ncd go-noteapp\n```\n\n### 3. Install Development Dependencies\n\nFor development, you need to install Air for live-reloading. Run:\n\n```bash\ngo install github.com/cosmtrek/air@latest\n```\n\n### 4. Create Air Configuration File (Optional)\n\nCreate a `.air.toml` file in the root of your project to customize Air’s behavior:\n\n```toml\n# .air.toml\n\n[build]\nbin = \"./bin/main\"  # Path to your build output binary\ncmd = \"go build -o ${build.bin} .\"  # Command to build your application\ninclude = [\"*.go\", \"templates/**/*.html\"]  # Files to watch for changes\nexclude = [\"static\"]  # Files to exclude from watching\n\n[logger]\ntime = true  # Enable logging with timestamps\n```\n\n### 5. Run the Application in Development Mode\n\nUse Air to start the application with live-reloading:\n\n```bash\nair\n```\n\nThis will start the application and automatically restart the server when changes are detected.\n\n### 6. Run the Application in Production Mode\n\nFor production, build your application and run the resulting binary:\n\n```bash\ngo build -o go-noteapp\n./go-noteapp\n```\n\nOpen your web browser and go to `http://localhost:3000` to access the application.\n\n## Usage\n\n### Creating a Note\n\n1. Click on the \"Create a note!\" button on the homepage.\n2. Enter a title and the content of your note in the provided form.\n3. Click on the \"Create Note\" button to save your note.\n\n### Viewing a Note\n\n1. Click on the title of the note you want to view from the homepage.\n2. You will be directed to a page where you can see the title and content of the selected note.\n\n### Editing a Note\n\n1. Click on the \"edit\" link next to the title of the note you want to edit from the homepage.\n2. You will be directed to a page where you can edit the title and content of the note.\n3. After making your changes, click on the \"Save\" button to update the note.\n\n## Deployment\n\nTo deploy this application to a server or platform of your choice:\n\n1. **Build the application**:\n\n   ```bash\n   go build -o go-noteapp\n   ```\n\n2. **Deploy the `go-noteapp` binary** to your server or platform.\n\n3. **Run the binary** on your server:\n\n   ```bash\n   ./go-noteapp\n   ```\n\n   Ensure the server is set to listen on the appropriate port and is configured for your deployment environment.\n\n## License\n\nDistributed under the MIT License. See `LICENSE` for more information.\n\n---\n\nFeel free to explore the features of Go-NoteApp and customize it according to your needs. Happy note-taking! 🚀\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffyzanshaik%2Fnote-app-go","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffyzanshaik%2Fnote-app-go","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffyzanshaik%2Fnote-app-go/lists"}