{"id":22912154,"url":"https://github.com/simplyyan/lostpapyrus","last_synced_at":"2025-04-01T11:16:09.846Z","repository":{"id":243518940,"uuid":"812643723","full_name":"simplyYan/LostPapyrus","owner":"simplyYan","description":"A fast, light, easy and comprehensive Go framework.","archived":false,"fork":false,"pushed_at":"2024-08-27T18:02:37.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-28T09:21:41.881Z","etag":null,"topics":["backend","go","golang","http","http-client","http-requests","http-server","server","serverless-framework"],"latest_commit_sha":null,"homepage":"https://github.com/simplyYan/LostPapyrus/wiki/Docs","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/simplyYan.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","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},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":["https://github.com/simplyYan/simplyYan/blob/main/DONATE.MD"]}},"created_at":"2024-06-09T13:30:51.000Z","updated_at":"2024-08-27T18:02:41.000Z","dependencies_parsed_at":"2024-06-09T15:27:40.599Z","dependency_job_id":"0b7b2259-96e9-4ae0-b59e-e408a30a3977","html_url":"https://github.com/simplyYan/LostPapyrus","commit_stats":null,"previous_names":["simplyyan/lostpapyrus"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplyYan%2FLostPapyrus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplyYan%2FLostPapyrus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplyYan%2FLostPapyrus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/simplyYan%2FLostPapyrus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/simplyYan","download_url":"https://codeload.github.com/simplyYan/LostPapyrus/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246628225,"owners_count":20808106,"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":["backend","go","golang","http","http-client","http-requests","http-server","server","serverless-framework"],"created_at":"2024-12-14T04:26:49.970Z","updated_at":"2025-04-01T11:16:09.825Z","avatar_url":"https://github.com/simplyYan.png","language":"Go","funding_links":["https://github.com/simplyYan/simplyYan/blob/main/DONATE.MD"],"categories":[],"sub_categories":[],"readme":"# LostPapyrus\n\nLostPapyrus is a minimalist and fast web framework for Go (Golang). It aims to be easy to use, fast, and feature-rich, providing a broad range of functionalities for building web applications.\n\n## Features\n\n- Simple and intuitive API\n- Supports GET and POST routes\n- Middleware support\n- JSON response handling\n- Route parameters\n\n## Installation\n\nTo install LostPapyrus, use the following command:\n\n```bash\ngo get -u github.com/simplyYan/LostPapyrus\n```\n\n## Quick Start\n\nHere is a simple example to get you started with LostPapyrus:\n\n```go\npackage main\n\nimport (\n    \"fmt\"\n    \"github.com/simplyYan/LostPapyrus\"\n    \"net/http\"\n)\n\nfunc main() {\n    app := lostpapyrus.New()\n\n    app.Use(func(ctx *lostpapyrus.Context, next lostpapyrus.HandlerFunc) {\n        fmt.Println(\"Middleware before\")\n        next(ctx)\n        fmt.Println(\"Middleware after\")\n    })\n\n    app.Get(\"/\", func(ctx *lostpapyrus.Context) {\n        ctx.Send(\"Welcome to LostPapyrus!\")\n    })\n\n    app.Get(\"/hello/:name\", func(ctx *lostpapyrus.Context) {\n        name := ctx.Params[\"name\"]\n        ctx.Send(fmt.Sprintf(\"Hello, %s!\", name))\n    })\n\n    app.Post(\"/echo\", func(ctx *lostpapyrus.Context) {\n        var data map[string]interface{}\n        if err := ctx.BindJSON(\u0026data); err != nil {\n            ctx.Status(http.StatusBadRequest).Send(\"Invalid JSON\")\n            return\n        }\n        ctx.JSON(data)\n    })\n\n    app.Listen(\":3000\")\n}\n```\n\n## Contributing\n\nWe welcome contributions from the community. To contribute to LostPapyrus, you can:\n\n1. **Open an Issue**: If you find a bug or have a feature request, please open an issue on the GitHub repository.\n\n2. **Submit a Pull Request**: If you want to contribute code, fork the repository, make your changes, and submit a pull request. Please ensure your code follows the project's coding standards and includes appropriate tests.\n\n## License\n\nLostPapyrus is released under the BSD-3-Clause license. See the LICENSE file for more details.\n\n---\n\nThank you for using LostPapyrus! If you have any questions or need further assistance, feel free to open an issue on the GitHub repository.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplyyan%2Flostpapyrus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsimplyyan%2Flostpapyrus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsimplyyan%2Flostpapyrus/lists"}