{"id":43851701,"url":"https://github.com/fells-code/create-seamless","last_synced_at":"2026-02-11T04:03:16.944Z","repository":{"id":300324652,"uuid":"1005885218","full_name":"fells-code/create-seamless","owner":"fells-code","description":"The CLI installer for a seamless auth starter application","archived":false,"fork":false,"pushed_at":"2026-02-06T05:33:43.000Z","size":124,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-06T13:58:48.596Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/fells-code.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-06-21T02:42:29.000Z","updated_at":"2026-02-06T05:33:11.000Z","dependencies_parsed_at":"2025-06-22T05:16:31.175Z","dependency_job_id":null,"html_url":"https://github.com/fells-code/create-seamless","commit_stats":null,"previous_names":["fells-code/create-seamless"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/fells-code/create-seamless","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fells-code%2Fcreate-seamless","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fells-code%2Fcreate-seamless/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fells-code%2Fcreate-seamless/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fells-code%2Fcreate-seamless/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fells-code","download_url":"https://codeload.github.com/fells-code/create-seamless/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fells-code%2Fcreate-seamless/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29326844,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T03:52:29.695Z","status":"ssl_error","status_checked_at":"2026-02-11T03:52:23.094Z","response_time":97,"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":[],"created_at":"2026-02-06T07:16:56.590Z","updated_at":"2026-02-11T04:03:16.939Z","avatar_url":"https://github.com/fells-code.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# create-seamless\n\n[![License: AGPL-3](https://img.shields.io/badge/License-AGPL3-yellow.svg)](LICENSE)\n[![npm version](https://img.shields.io/npm/v/create-seamless.svg?style=flat)](https://www.npmjs.com/package/create-seamless)\n\n`create-seamless` is a project scaffolding tool for building applications with **Seamless Auth**, an open source, passwordless authentication system.\n\nIt provisions a local, production-shaped development environment that can include:\n\n- The Seamless Auth open source server\n- A starter web application\n- A starter API server\n\nThe generated project is fully local and requires no hosted services or external accounts to run.\n\n---\n\n## What this creates\n\nDepending on the flags provided, `create-seamless` scaffolds a local project with the following structure:\n\n```text\nmy-app/\n├─ auth/        # Seamless Auth OSS server\n├─ web/         # Starter web application (optional)\n├─ api/         # Starter API server (optional)\n└─ README.md\n```\n\nEach service is independently runnable and preconfigured to work together using local URLs and environment variables.\n\nThe intended development workflow is to run each service in its own terminal:\n\n```bash\n# terminal 1\ncd auth \u0026\u0026 npm run dev\n\n# terminal 2\ncd api \u0026\u0026 npm run dev\n\n# terminal 3\ncd web \u0026\u0026 npm run dev\n```\n\n---\n\n## Usage\n\nRun via `npx`:\n\n```bash\nnpx create-seamless my-app\n```\n\nBy default, this scaffolds the full local stack:\n\n- Seamless Auth server\n- Web application\n- API server\n\n---\n\n## CLI options\n\n| Flag          | Description                                  |\n| ------------- | -------------------------------------------- |\n| `--auth`      | Include the Seamless Auth open source server |\n| `--web`       | Include the starter web application          |\n| `--api`       | Include the starter API server               |\n| `--install`   | Automatically install dependencies           |\n| `--no-git`    | Skip git initialization                      |\n| `--auth-port` | Auth server port (default: 3000)             |\n| `--api-port`  | API server port (default: 4000)              |\n| `--web-port`  | Web dev server port (default: 5173)          |\n\nIf no component flags are provided, all components are included.\n\n---\n\n## Included projects\n\n`create-seamless` pulls directly from the following open source repositories:\n\n- Seamless Auth Server\n  [https://github.com/fells-code/seamless-auth-api](https://github.com/fells-code/seamless-auth-api)\n\n- Seamless Auth React Starter\n  [https://github.com/fells-code/seamless-auth-starter-react](https://github.com/fells-code/seamless-auth-starter-react)\n\n- Seamless Auth API Starter\n  [https://github.com/fells-code/seamless-auth-starter-express](https://github.com/fells-code/seamless-auth-starter-express)\n\nEach repository can be used independently, but `create-seamless` wires them together for local development out of the box.\n\n---\n\n## Documentation\n\nFull documentation for Seamless Auth, including architecture, configuration, and deployment guidance, is available at:\n\n[https://seamlessauth.com/docs](https://seamlessauth.com/docs)\n\n---\n\n## Philosophy\n\nSeamless Auth is designed around:\n\n- Passwordless authentication only\n- Embedded auth (no redirects or callbacks)\n- Self-hosted, open source foundations\n- Production-shaped local development\n- Minimal assumptions and explicit configuration\n\n`create-seamless` exists to make getting started with this model straightforward and repeatable.\n\n---\n\n## Requirements\n\n- Node.js 18 or newer\n- npm or pnpm\n\n---\n\n## License\n\n**AGPL-3.0-only** © 2026 Fells Code LLC\n\nThis license ensures:\n\n- transparency of security-critical code\n- freedom to self-host and modify\n- sustainability of the managed service offering\n\nSee [`LICENSE`](./LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffells-code%2Fcreate-seamless","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffells-code%2Fcreate-seamless","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffells-code%2Fcreate-seamless/lists"}