{"id":20283805,"url":"https://github.com/premieroctet/reactivated-app","last_synced_at":"2025-11-08T23:02:25.499Z","repository":{"id":97187972,"uuid":"219578602","full_name":"premieroctet/reactivated-app","owner":"premieroctet","description":"Reactivated.app is an open-source app that scans your JS dependencies every 4 hours and generates cool dashboards","archived":false,"fork":false,"pushed_at":"2023-09-04T10:07:38.000Z","size":5367,"stargazers_count":70,"open_issues_count":1,"forks_count":4,"subscribers_count":12,"default_branch":"develop","last_synced_at":"2025-06-25T04:43:29.819Z","etag":null,"topics":["nestjs","reactjs","typescript"],"latest_commit_sha":null,"homepage":"https://reactivated.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/premieroctet.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}},"created_at":"2019-11-04T19:20:24.000Z","updated_at":"2024-11-19T12:56:26.000Z","dependencies_parsed_at":"2024-01-28T16:01:48.372Z","dependency_job_id":"fe8b87bd-ec6e-43d9-b431-397b5e342e84","html_url":"https://github.com/premieroctet/reactivated-app","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/premieroctet/reactivated-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/premieroctet%2Freactivated-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/premieroctet%2Freactivated-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/premieroctet%2Freactivated-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/premieroctet%2Freactivated-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/premieroctet","download_url":"https://codeload.github.com/premieroctet/reactivated-app/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/premieroctet%2Freactivated-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265508069,"owners_count":23779066,"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":["nestjs","reactjs","typescript"],"created_at":"2024-11-14T14:17:12.275Z","updated_at":"2025-11-08T23:02:20.435Z","avatar_url":"https://github.com/premieroctet.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [![image](https://user-images.githubusercontent.com/1102595/81568342-ea672c00-939d-11ea-8cd2-98270005822e.png)](https://reactivated.app)\n\n[![prettier][prettier-badge]][prettier-url]\n[![TypeScript][typescript-badge]][typescript-url]\n\nReactivated.app is an open-source app that scans your JS dependencies every 4 hours and generates [cool dashboards](https://reactivated.app/demo).\n\nhttps://reactivated.app\n\n## Features\n\n- 🧩 Support for NPM dependencies\n- 🐙 Import your GitHub repositories\n- 🔋 Visualizing your project's health\n- 🔎 Detection of the framework used\n- 💅 Grouping the different dependencies by a common prefix\n- ✨ **Beta** Automated PR in a new branch with the up-to-date dependencies _(⚠️only supporting yarn.lock : will be created even if there is a package-lock.json)_\n\n![Demo](reactivated-app.gif)\n\n---\n\n## 💪 Built with\n\nWe use TypeScript ❤️ for static typing\n\n### API\n\n- [NestJS](https://nestjs.com/)\n- [NestJS Crud](https://github.com/nestjsx/crud)\n- [MySQL](https://www.mysql.com/) or [PostgreSQL](https://www.postgresql.org/) for the database\n- [Bull](https://github.com/OptimalBits/bull) with [Redis](https://redis.io/) for computing expensive operations with workers\n\n### Front\n\n- [Create React App](https://github.com/facebook/create-react-app)\n- [Chakra UI](https://chakra-ui.com/)\n- [SWR](https://github.com/vercel/swr)\n- [Framer motion](https://www.framer.com/motion/)\n\n## Getting started\n\n##### Prerequisites\n\n- IDE with TypeScript, Prettier and ESLint support\n- Node installed\n- Yarn installed\n\n### API\n\n#### Installation\n\n```bash\n$ cd api\n$ yarn\n```\n\n```bash\ncp .env.dist .env.dev\n```\n\n#### Running the app\n\n```\n# watch mode\n$ yarn start:dev\n\n# start workers\nyarn start:worker\n\n# handle GitHub webhooks with Smee\n$ yarn smee\n```\n\nThe API should be available on [http://localhost:3000](http://localhost:3000) (the swagger doc is available on [http://localhost:3000/swagger](http://localhost:3000/swagger))\n\n#### Webhook (GitHub API)\n\nForward the payload from GitHub API to our local dev API thanks to [Smee](https://github.com/probot/smee.io).\n\n```bash\nsmee --url https://smee.io/BVk7Sqmgj7fXXcV --path /webhooks/consume --port 3000\n```\n\n#### Test\n\n```bash\n# unit tests\n$ npm run test\n\n# e2e tests\n$ npm run test:e2e\n\n# test coverage\n$ npm run test:cov\n```\n\n### Front\n\n#### Installation and .env config\n\n```bash\ncd front\ncp .env.dist .env\nyarn\n```\n\n#### Run the app\n\n```bash\nyarn start\n```\n\nThe app should be available on [http://localhost:3007](http://localhost:3007)\n\n#### Webpack config\n\nWe use `customize-cra` to add some additional configuration to Webpack.\nOne of those configuration is `aliases`. Whenever creating a new folder in the src folder, make sure it's correctly configured in the Webpack configuration.\n\n#### Build the app\n\n```bash\nyarn build\n```\n\n## Contributing\n\n1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device\n2. Install the dependencies (follow these instructions for the [API](api/README.md) and [Front](front/README.md))\n3. Start the app, build your new feature and submit your pull request\n\nOR\n\nMake a new issue according to this [template](.github/ISSUE_TEMPLATE/custom.md)\n\n[typescript-badge]: https://badges.frapsoft.com/typescript/code/typescript.svg?v=101\n[typescript-url]: https://github.com/microsoft/TypeScript\n[prettier-badge]: https://img.shields.io/badge/code_style-prettier-ff69b4.svg\n[prettier-url]: https://github.com/prettier/prettier\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpremieroctet%2Freactivated-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpremieroctet%2Freactivated-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpremieroctet%2Freactivated-app/lists"}