{"id":36888171,"url":"https://github.com/souvik666/ghost-auth","last_synced_at":"2026-01-12T15:32:23.547Z","repository":{"id":57677092,"uuid":"489453101","full_name":"souvik666/ghost-auth","owner":"souvik666","description":"Rapidly integrate authentication and authorization for web, mobile, and legacy applications so you can focus on your core business. grab your api key from here https://ghost-auth.netlify.app/","archived":false,"fork":false,"pushed_at":"2022-05-10T14:33:32.000Z","size":31,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-09T07:02:24.219Z","etag":null,"topics":["api","authentication","authorization","express","sdk-nodejs"],"latest_commit_sha":null,"homepage":"https://ghost-auth-service.herokuapp.com/","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/souvik666.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}},"created_at":"2022-05-06T18:16:18.000Z","updated_at":"2025-07-10T19:08:02.000Z","dependencies_parsed_at":"2022-08-24T19:20:26.692Z","dependency_job_id":null,"html_url":"https://github.com/souvik666/ghost-auth","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/souvik666/ghost-auth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/souvik666%2Fghost-auth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/souvik666%2Fghost-auth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/souvik666%2Fghost-auth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/souvik666%2Fghost-auth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/souvik666","download_url":"https://codeload.github.com/souvik666/ghost-auth/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/souvik666%2Fghost-auth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28340938,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["api","authentication","authorization","express","sdk-nodejs"],"created_at":"2026-01-12T15:32:22.868Z","updated_at":"2026-01-12T15:32:23.536Z","avatar_url":"https://github.com/souvik666.png","language":"JavaScript","readme":"\u003ch1 align=\"center\"\u003eWelcome to ghost-auth 👋\u003c/h1\u003e\n\u003cp\u003e\n  \u003ca href=\"https://www.npmjs.com/package/ghost-auth\" target=\"_blank\"\u003e\n    \u003cimg alt=\"Version\" src=\"https://img.shields.io/npm/v/ghost-auth.svg\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"#\" target=\"_blank\"\u003e\n    \u003cimg alt=\"License: ISC\" src=\"https://img.shields.io/badge/License-ISC-yellow.svg\" /\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003e Rapidly integrate authentication and authorization for web, mobile, and legacy applications so you can focus on your core business.\n\n# Quick links\n\n- **[Get Free API key](https://ghost-auth.netlify.app/)**\n- **[API Documentation](https://ghost-auth-service.herokuapp.com/)**\n- **[Ghost auth npm package](https://www.npmjs.com/package/ghost-auth)**\n\n# API Documentation\n\nyou can find the API documentation here [LINK](https://ghost-auth-service.herokuapp.com/)\nto use the api or the npm package you will need an API-KEY please get your API key from this website [LINK](https://ghost-auth.netlify.app/)\n\n## FLOW\n\n```mermaid\ngraph LR\nA[GO to the website] -- Grab your api key --\u003e B(Click on authorized buttton and past the api-key)\nB \u003c--\u003e D{test the api}\n\n```\n\n# ghost-auth Documentation\n\n## Install\n\n```sh\nnpm i ghost-auth\n```\n\n## Import\n\n```js\nimport GhostAuth from \"ghost-auth\";\n```\n\n## Instance\n\n```js\nconst API_KEY = \"YOUR_API_KEY\";\nconst ghost = new GhostAuth(API_KEY);\n```\n\n## signUp\n\n```js\nghost\n  .signUp({\n    email: \"souvik@gmail.com\",\n    password: \"souvik@12345\",\n    name: \"souvik\",\n  })\n  .then((d) =\u003e {\n    console.log(d);\n  });\n```\n\n## Login\n\n```js\nghost.Login({ email: \"souvik@gmail.com\", password: \"souvik@12345\" });\n```\n\n## Logout\n\n```js\nghost.Logout().then((d) =\u003e {\n  console.log(d);\n});\n```\n\n## IsAuth\n\n```js\nghost.isAuth().then((d) =\u003e {\n  console.log(d);\n});\n```\n\n## Forgotpass\n\n```js\nghost.Forgotpass(email).then((d) =\u003e {\n  console.log(d);\n});\n```\n\n## ResetPassword\n\n```js\nghost.ResetPassword(otp, password, token).then((d) =\u003e {\n  console.log(d);\n});\n```\n\n## Get All users\n\n```js\nghost.GetAllUsers().then((d) =\u003e {\n  console.log(d);\n});\n```\n\n## Delete A User\n\n```js\nghost.DeleteAUser(\"someactualemail@email.com\").then((d) =\u003e {\n  console.log(d);\n});\n```\n\n## Author\n\n👤 **souvik666**\n\n- Github: [@souvik666](https://github.com/souvik666)\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n---\n\n_This README was generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator)_\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsouvik666%2Fghost-auth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsouvik666%2Fghost-auth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsouvik666%2Fghost-auth/lists"}