{"id":14970029,"url":"https://github.com/pouchlabs/fasteejs","last_synced_at":"2025-10-26T11:31:20.904Z","repository":{"id":254599229,"uuid":"847014284","full_name":"pouchlabs/fasteejs","owner":"pouchlabs","description":"fasteejs blazing fast web application framework","archived":false,"fork":false,"pushed_at":"2025-02-02T18:54:20.000Z","size":200,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-02T18:55:17.384Z","etag":null,"topics":["api","api-rest","backend","bun","cloudflare","deno","edge","expressjs","framework","http","nodejs","workers"],"latest_commit_sha":null,"homepage":"https://fasteejs.top","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pouchlabs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"license.md","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":"fasteejs","ko_fi":"pouchlabs","tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"thanks_dev":null,"custom":null}},"created_at":"2024-08-24T15:50:18.000Z","updated_at":"2025-02-02T18:54:24.000Z","dependencies_parsed_at":"2024-08-24T17:11:06.632Z","dependency_job_id":"117fdf95-7b26-4c78-b7f5-edbe7e84026f","html_url":"https://github.com/pouchlabs/fasteejs","commit_stats":null,"previous_names":["pouchlabs/fasteejs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pouchlabs%2Ffasteejs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pouchlabs%2Ffasteejs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pouchlabs%2Ffasteejs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pouchlabs%2Ffasteejs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pouchlabs","download_url":"https://codeload.github.com/pouchlabs/fasteejs/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238319436,"owners_count":19452336,"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":["api","api-rest","backend","bun","cloudflare","deno","edge","expressjs","framework","http","nodejs","workers"],"created_at":"2024-09-24T13:42:55.455Z","updated_at":"2025-10-26T11:31:15.596Z","avatar_url":"https://github.com/pouchlabs.png","language":"JavaScript","funding_links":["https://opencollective.com/fasteejs","https://ko-fi.com/pouchlabs"],"categories":[],"sub_categories":[],"readme":"![fastee](https://fasteejs.top/icon.svg \"fasteejs\") \n# blazing fast web application framework\n\nBuilt on web Standards\n\nFast, Lightweight,runs on any JavaScript runtime\n# Features\n * fast\n * middlewares\n * already know express Yei!\n * multi-runtime\n * express ecosystem support\n * gracefully shutsdown\n * has built-in goodies\n\n## packages\n* Fastee - a blazing fast express alternative,runs on nodejs,bun and deno only.\n* edge - a web application framework can serve a hono alternative,it's fast,runs on bun,deno,and workers.\n\n# How to install Fastee\nfound as fasteejs\n\n```bash\nnpm install fasteejs\n```\n\n\n## How to install Edge\nfound as @fasteejs/edge\n\n```bash\nnpm install @fasteejs/edge\n``` \n ```bash\n  npm i fasteejs\n ```\n # Fastee usage\n  runs on node,bun and deno\n ```js\n   import {Fastee} from \"fasteejs\"\n\n   const app = new Fastee(); //uses defaults\n   const app1 = new Fastee({port:4000,delay:30000}) //pass port and shutdown delay\n   let server = http.createServer().listen(5000)\n   const app2 = new Fastee({server,delay:30000}) //passed listening server must be already running\n   app.get('/', function (req, res) {\n      res.send('Hello World')\n   })\n\napp.static(\"static\",{dotfiles:false}) //pass valid folder path and optional config\n\n  //shutdown listener\n app.onShutdown((signal)=\u003e{\n   //call service before shutdown\n   console.log(\"before\",signal)\n })\n\n   export {app,app1,app2}\n ```\n ## edge usage\n```js\nimport Edge from \"@fasteejs/edge\" //or import {Edge} from \"@fasteejs/edge\"\n\nconst app = new Edge();\n\nconsole.log(app)\n//global wares\napp.use((req,res)=\u003e{//no next funtion required\n req.id=\"ware1\"\n},(req,res)=\u003e{\n  console.log(req.id)\n  return res.json({msg:\"success\"})\n})\n//bwares route specific wares\napp.use(\"/api\",(req,res)=\u003e{//no next funtion required\n req.id=\"ware1\"\n},(req,res)=\u003e{\n  console.log(req.id)\n  return res.json({msg:\"success\"})\n})\n/*handler\na handler must return a response \n*/\napp.get(\"/\",async (req,res)=\u003e{\n  console.log(req)\n  //object\n  return new Response(\"hi from server\")//or return res.text(\"hi edge\")\n})\n\nexport default app //must do\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpouchlabs%2Ffasteejs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpouchlabs%2Ffasteejs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpouchlabs%2Ffasteejs/lists"}