{"id":16967606,"url":"https://github.com/botcahx/sosial-chating-gchat","last_synced_at":"2026-04-28T20:01:34.002Z","repository":{"id":45599318,"uuid":"513854780","full_name":"BOTCAHX/Sosial-Chating-GChat","owner":"BOTCAHX","description":"Ini adalah projek Aplikasi chating berbasis web ","archived":false,"fork":false,"pushed_at":"2022-12-15T09:34:21.000Z","size":1502,"stargazers_count":1,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T16:19:27.931Z","etag":null,"topics":["anonymous-chat","chat-application","chatbots","chating-application","heroku-deployment","indonesia-android-kejar","javascript","network","nodejs","python-script","replit-hosting","teknologi-multimedia","tio","tipescript"],"latest_commit_sha":null,"homepage":"https://chat-real-time-free.tioclkp02.repl.co/","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/BOTCAHX.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":null,"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2022-07-14T10:22:11.000Z","updated_at":"2025-02-10T10:21:37.000Z","dependencies_parsed_at":"2023-01-29T02:30:35.808Z","dependency_job_id":null,"html_url":"https://github.com/BOTCAHX/Sosial-Chating-GChat","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/BOTCAHX/Sosial-Chating-GChat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOTCAHX%2FSosial-Chating-GChat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOTCAHX%2FSosial-Chating-GChat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOTCAHX%2FSosial-Chating-GChat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOTCAHX%2FSosial-Chating-GChat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BOTCAHX","download_url":"https://codeload.github.com/BOTCAHX/Sosial-Chating-GChat/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BOTCAHX%2FSosial-Chating-GChat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32396781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["anonymous-chat","chat-application","chatbots","chating-application","heroku-deployment","indonesia-android-kejar","javascript","network","nodejs","python-script","replit-hosting","teknologi-multimedia","tio","tipescript"],"created_at":"2024-10-14T00:09:09.014Z","updated_at":"2026-04-28T20:01:33.973Z","avatar_url":"https://github.com/BOTCAHX.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Sosial-Chating-GChat\nIni adalah projek Aplikasi chating berbasis web \n\n# Installation\n\u003e `[![Run on Repl.it](https://repl.it/badge/github/quiec/whatsAlfa)](https://replit.com/~)\n\n\n# Demo\nPlay Demo (https://adorable-hare-petticoat.cyclic.app/).\n\n# Details\nFiles were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors.\n## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cors/index.d.ts)\n````ts\n// ini typescript 2.3\n// bila gak support cari aja sendiri :v gua cuma nemu ini\n\nimport { IncomingHttpHeaders } from 'http';\n\ntype StaticOrigin = boolean | string | RegExp | (boolean | string | RegExp)[];\n\ntype CustomOrigin = (requestOrigin: string | undefined, callback: (err: Error | null, origin?: StaticOrigin) =\u003e void) =\u003e void;\n\ndeclare namespace e {\n    interface CorsRequest {\n        method?: string | undefined;\n        headers: IncomingHttpHeaders;\n    }\n    interface CorsOptions {\n        /**\n         * @default '*''\n         */\n        origin?: StaticOrigin | CustomOrigin | undefined;\n        /**\n         * @default 'GET,HEAD,PUT,PATCH,POST,DELETE'\n         */\n        methods?: string | string[] | undefined;\n        allowedHeaders?: string | string[] | undefined;\n        exposedHeaders?: string | string[] | undefined;\n        credentials?: boolean | undefined;\n        maxAge?: number | undefined;\n        /**\n         * @default false\n         */\n        preflightContinue?: boolean | undefined;\n        /**\n         * @default 204\n         */\n        optionsSuccessStatus?: number | undefined;\n    }\n    type CorsOptionsDelegate\u003cT extends CorsRequest = CorsRequest\u003e = (\n        req: T,\n        callback: (err: Error | null, options?: CorsOptions) =\u003e void,\n    ) =\u003e void;\n}\n\ndeclare function e\u003cT extends e.CorsRequest = e.CorsRequest\u003e(\n    options?: e.CorsOptions | e.CorsOptionsDelegate\u003cT\u003e,\n): (\n    req: T,\n    res: {\n        statusCode?: number | undefined;\n        setHeader(key: string, value: string): any;\n        end(): any;\n    },\n    next: (err?: any) =\u003e any,\n) =\u003e void;\nexport = e;\n\n````\n\n### Additional Details\n * Last updated: Fri, 09 Jul 2022 07:31:29 GMT\n * Dependencies: none\n * Global values: none\n\n# Credits\nThese definitions were written by [Tio](https://github.com/BOTCAHX).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbotcahx%2Fsosial-chating-gchat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbotcahx%2Fsosial-chating-gchat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbotcahx%2Fsosial-chating-gchat/lists"}