{"id":13989607,"url":"https://github.com/fabrix-app/fabrix","last_synced_at":"2025-04-30T22:13:54.468Z","repository":{"id":48032942,"uuid":"137764114","full_name":"fabrix-app/fabrix","owner":"fabrix-app","description":"Strongly Typed Modern Web Application Framework for Node.js and Browsers","archived":false,"fork":false,"pushed_at":"2023-01-07T06:13:53.000Z","size":1535,"stargazers_count":108,"open_issues_count":24,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-30T22:13:36.128Z","etag":null,"topics":["fabrix","framework","nodejs","spool","typescript"],"latest_commit_sha":null,"homepage":"","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/fabrix-app.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","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,"custom":null}},"created_at":"2018-06-18T14:40:57.000Z","updated_at":"2024-09-30T17:01:07.000Z","dependencies_parsed_at":"2023-02-06T13:47:05.277Z","dependency_job_id":null,"html_url":"https://github.com/fabrix-app/fabrix","commit_stats":null,"previous_names":[],"tags_count":29,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabrix-app%2Ffabrix","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabrix-app%2Ffabrix/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabrix-app%2Ffabrix/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fabrix-app%2Ffabrix/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fabrix-app","download_url":"https://codeload.github.com/fabrix-app/fabrix/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251789618,"owners_count":21644086,"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":["fabrix","framework","nodejs","spool","typescript"],"created_at":"2024-08-09T13:01:50.345Z","updated_at":"2025-04-30T22:13:54.440Z","avatar_url":"https://github.com/fabrix-app.png","language":"JavaScript","readme":"\u003cimg src=\"https://s3.us-east-2.amazonaws.com/fabrix-app/web/sw-002-1_rect-01-01.png\" height=\"96px\" title=\"Fabrix Logo\" /\u003e\n\n[![Gitter][gitter-image]][gitter-url]\n[![NPM version][npm-image]][npm-url]\n[![Build Status][ci-image]][ci-url]\n[![Test Coverage][coverage-image]][coverage-url]\n[![Dependency Status][daviddm-image]][daviddm-url]\n[![Follow @FabrixApp on Twitter][twitter-image]][twitter-url]\n\nFabrix is a strongly typed modern web application framework for Node.js or even Browsers. It builds on the pedigree of [Rails](http://rubyonrails.org/) and [Grails](https://grails.org/) to accelerate development by adhering to a straightforward, convention-based, API-driven design philosophy. \n\n_Note: Because Fabrix is lightweight and easily extendable, it's also very __very__ fast and well suited for function based environments._\n\n## Getting Started\n\n#### Install\n_Note: The CLI is under construction, search for [example apps](https://github.com/fabrix-app/example-app) in the meantime_\n\nInstall the Fabrix CLI. This will help you generate a Fabrix app and more.\n\n```sh\n$ npm install @fabrix/fab-cli -g\n```\n\n#### Generate A New Fabrix App\n```sh\n$ fab app \u003cnew_app_name\u003e\n```\n\n#### Start Sewing\n\nFabrix uses a CLI to generate scaffolding for new\napplications, and to create resources inside the application.\n\n```sh\n$ fab --help\n\nUsage:\n  fab\n\nGenerators:\n  Create New App\n    fab app \u003capp-name\u003e\n\n  Create New Model\n    fab model \u003cmodel-name\u003e\n\n  Create New Controller\n    fab controller \u003ccontroller-name\u003e\n\n  Create New Policy\n    fab policy \u003cpolicy-name\u003e\n\n  Create New Service\n    fab service \u003cservice-name\u003e\n    \n  Create New Spool\n    fab spool \u003cspool-name\u003e\n```\n\n#### Run\n\nOnce installation is complete, begin weaving!\n```sh\n$ npm run compile \u0026\u0026 node dist/server.js\n```\n\nor simply\n\n```sh\n$ npm start\n```\n\n#### Sew on and Sew Forth!\nFabrix is really focused on bringing great libraries together in congruent ways. So if you have something like a web [scrapping library](https://github.com/fabrix-app/spool-scraper), then it's easy to implement that as a Spool and share it with the ever growing fabrix ecosystem. \n\n## Spools\n\n[Spools](https://github.com/search?q=topic%3Aspools+org%3Afabrix-app\u0026type=Repositories) extend the framework's\ncapabilities and allow developers to leverage existing ecosystem tools through a simple and well-defined API. New features, behavior, APIs, and other functionality can be added to the Fabrix framework through Spools.\n\nMany Fabrix installations will include some of the following Spools:\n\n- [router](https://github.com/fabrix-app/spool-router)\n- [errors](https://github.com/fabrix-app/spool-errors)\n- [i18n](https://github.com/fabrix-app/spool-i18n)\n- [repl](https://github.com/fabrix-app/spool-repl)\n- [express](https://github.com/fabrix-app/spool-express)\n- [sequelize](https://github.com/fabrix-app/spool-sequelize)\n\n## Compatibility\n\n- Windows, Mac, and Linux\n- Node 8.0 and newer\n\n## Documentation\n\nSee [**fabrix.app/docs**](http://fabrix.app/docs) for complete documentation.\n\n## More Resources\n\n#### Tutorials\nComing soon!\n\n#### Videos\nComing soon!\n\n#### Support\n- [Live Gitter Chat](https://gitter.im/fabrix-app/Lobby)\n- [Twitter](https://twitter.com/FabrixApp)\n- [Fabrix.app Website](http://fabrix.app/support)\n- [Stackoverflow](http://stackoverflow.com/questions/tagged/fabrix)\n\n## FAQ\n\nSee https://github.com/fabrix-app/fabrix/wiki/FAQ\n\n## Contributing\nWe love contributions! Please check out our [Contributor's Guide](https://github.com/fabrix-app/fabrix/blob/master/.github/CONTRIBUTING.md) for more\ninformation on how our projects are organized and how to get started.\n\n## Development\nFabrix uses a continuous integration process and all tests must pass for Fabrix to release a new version.  CircleCI releases a new version when a PR is merged into master.  For local development, you can download [CircleCI's local development tools](https://circleci.com/docs/2.0/local-cli/#installing-the-circleci-local-cli-on-macos-and-linux-distros) and run local tests before submitting a Pull Request.\n\nFabrix maintains a high score of coverage tests, any Pull Request should have well written Integration and Unit tests that increase the overall coverage score. \n\n### Browser Support\nBrowser support provided by Webpack is on it's way.\n\n`webpack --config ./test-browser/webpack.config.js`\n\n## License\n[MIT](https://github.com/fabrix-app/fabrix/blob/master/LICENSE)\n\n## Legacy\nFabrix would not have been possible without the substantial work done by the [Trails.js team](https://github.com/trailsjs). While Fabrix maintains a different code base and system of best practices, none of this would have been possible without the contributions from the Trails community.\n\n[npm-image]: https://img.shields.io/npm/v/@fabrix/fabrix.svg?style=flat-square\n[npm-url]: https://npmjs.org/package/@fabrix/fabrix\n[ci-image]: https://img.shields.io/circleci/project/github/fabrix-app/fabrix/master.svg\n[ci-url]: https://circleci.com/gh/fabrix-app/fabrix/tree/master\n[daviddm-image]: http://img.shields.io/david/fabrix-app/fabrix.svg?style=flat-square\n[daviddm-url]: https://david-dm.org/fabrix-app/fabrix\n[gitter-image]: http://img.shields.io/badge/+%20GITTER-JOIN%20CHAT%20%E2%86%92-1DCE73.svg?style=flat-square\n[gitter-url]: https://gitter.im/fabrix-app/Lobby\n[twitter-image]: https://img.shields.io/twitter/follow/FabrixApp.svg?style=social\n[twitter-url]: https://twitter.com/FabrixApp\n[coverage-image]: https://img.shields.io/codeclimate/coverage/github/fabrix-app/fabrix.svg?style=flat-square\n[coverage-url]: https://codeclimate.com/github/fabrix-app/fabrix/coverage\n","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabrix-app%2Ffabrix","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffabrix-app%2Ffabrix","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffabrix-app%2Ffabrix/lists"}