{"id":20114352,"url":"https://github.com/jetbridge/email-signature-generator","last_synced_at":"2026-06-07T03:33:02.878Z","repository":{"id":98605915,"uuid":"202188979","full_name":"jetbridge/email-signature-generator","owner":"jetbridge","description":"Generate email signatures","archived":false,"fork":false,"pushed_at":"2020-01-22T10:45:16.000Z","size":293,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-09T19:44:44.974Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://signature-generator.jetbridge.app","language":"TypeScript","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/jetbridge.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-08-13T17:02:14.000Z","updated_at":"2024-05-08T15:02:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"9efbd471-095f-4134-b525-e561257e1c26","html_url":"https://github.com/jetbridge/email-signature-generator","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jetbridge/email-signature-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetbridge%2Femail-signature-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetbridge%2Femail-signature-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetbridge%2Femail-signature-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetbridge%2Femail-signature-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jetbridge","download_url":"https://codeload.github.com/jetbridge/email-signature-generator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jetbridge%2Femail-signature-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34006648,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-07T02:00:07.652Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":"2024-11-13T18:29:27.449Z","updated_at":"2026-06-07T03:33:02.863Z","avatar_url":"https://github.com/jetbridge.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# JetBridge Frontend Starter Kit\n\nFor best practices, consult [Notion](https://www.notion.so/jetbridge/Starting-A-New-Project-cf03a080207b4569b53bb3b7d06f7f2c).\n\nThis project was bootstrapped with [Create React App](https://github.com/jetbridge/create-react-app)\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### `yarn start`\n\nRuns the app in the development mode.\u003cbr\u003e\nOpen [http://localhost:3000](http://localhost:3000) to view it in the browser.\n\nThe page will reload if you make edits.\u003cbr\u003e\nYou will also see any lint errors in the console.\n\n### `yarn test`\n\nLaunches the test runner in the interactive watch mode.\u003cbr\u003e\nSee the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.\n\n### `yarn build`\n\nBuilds the app for production to the `build` folder.\u003cbr\u003e\nIt correctly bundles React in production mode and optimizes the build for the best performance.\n\nThe build is minified and the filenames include the hashes.\u003cbr\u003e\nYour app is ready to be deployed!\n\nSee the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.\n\n### `yarn storybook`\n\nLaunches the [storybook](https://github.com/storybooks/storybook) environment.\n\n### `yarn lint`\n\nRuns linter over all files in `./src` folder and its subfolders\n\n### `yarn fix`\n\nRuns linter over all files in `./src` folder and its subfolders and applies the code formatting fixes where possible\n\n### `yarn test`\n\nRuns jest tests in a watch mode\n\n## Code style\n\n### Basic Rules\n\n- Only include one React component per file.\n  - However, multiple [Stateless, or Pure, Components](https://facebook.github.io/react/docs/reusable-components.html#stateless-functions) are allowed per file\n- Always use TSX syntax.\n\n### Indentation:\n\nUse 2 spaces for indentation\n\n### Naming:\n\n- **Extensions**: Use `.tsx` extension for React components.\n- **Filename**: Use PascalCase for filenames. E.g., `AdminDashboard.tsx`.\n  **Reference Naming**: Use PascalCase for React components and camelCase for their instances.\n\n```tsx\n// bad\nimport reservationCard from './ReservationCard'\n\n// good\nimport ReservationCard from './ReservationCard'\n\n// bad\nconst ReservationItem = \u003cReservationCard /\u003e\n\n// good\nconst reservationItem = \u003cReservationCard /\u003e\n```\n\n- **Component Naming**: Use the filename as the component name. For example, `ReservationCard.tsx` should have a reference name of `ReservationCard`. However, for root components of a directory, use `index.tsx` as the filename and use the directory name as the component name:\n\n  ```tsx\n  // bad\n  import Footer from './Footer/Footer'\n\n  // bad\n  import Footer from './Footer/index'\n\n  // good\n  import Footer from './Footer'\n  ```\n\n- **Types naming**: interface names should start with I:\n  `tsx ILoginScreenProps: { }`\n\n- **Higher-order Component Naming**: Use a composite of the higher-order component’s name and the passed-in component’s name as the `displayName` on the generated component. For example, the higher-order component `withFoo()`, when passed a component `Bar` should produce a component with a `displayName` of `withFoo(Bar)`.\n\n### Types:\n\nAlways specify prop types and state types for components and functions. Return types for API Requests are required.\n\n### Props\n\n- Always use camelCase for prop names.\n\n  ```tsx\n  // bad\n  \u003cFoo\n    UserName=\"hello\"\n    phone_number={12345678}\n  /\u003e\n\n  // good\n  \u003cFoo\n    userName=\"hello\"\n    phoneNumber={12345678}\n  /\u003e\n  ```\n\n- We don’t recommend using indexes for keys if the order of items may change.\n\n```tsx\n// bad\n{\n  todos.map((todo, index) =\u003e \u003cTodo {...todo} key={index} /\u003e)\n}\n\n// good\n{\n  todos.map(todo =\u003e \u003cTodo {...todo} key={todo.id} /\u003e)\n}\n```\n\n- Do not do props drilling. We recommend using [React Context API](https://reactjs.org/docs/context.html) for passing props down to the children's children components.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetbridge%2Femail-signature-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjetbridge%2Femail-signature-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjetbridge%2Femail-signature-generator/lists"}