{"id":14977482,"url":"https://github.com/eddort/react-flexer","last_synced_at":"2025-10-29T12:37:22.331Z","repository":{"id":57140797,"uuid":"201732926","full_name":"eddort/react-flexer","owner":"eddort","description":"flexbox grid layout like rebass, just faster","archived":false,"fork":false,"pushed_at":"2019-08-15T14:01:49.000Z","size":331,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-11T16:03:57.297Z","etag":null,"topics":["cssinjs","flexbox","quarkly","react","rebass","styled-components","styled-system"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/eddort.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":null,"support":null}},"created_at":"2019-08-11T07:33:49.000Z","updated_at":"2020-10-28T22:08:56.000Z","dependencies_parsed_at":"2022-09-01T23:51:11.543Z","dependency_job_id":null,"html_url":"https://github.com/eddort/react-flexer","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddort%2Freact-flexer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddort%2Freact-flexer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddort%2Freact-flexer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eddort%2Freact-flexer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eddort","download_url":"https://codeload.github.com/eddort/react-flexer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219860180,"owners_count":16556026,"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":["cssinjs","flexbox","quarkly","react","rebass","styled-components","styled-system"],"created_at":"2024-09-24T13:55:44.829Z","updated_at":"2025-10-28T04:31:20.451Z","avatar_url":"https://github.com/eddort.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"flexer.gif\" width=\"200\"\u003e\n\n[![Build Status][badge]][travis]\n[![Coverage][coverage-badge]][coverage]\n[![Version][version-badge]][npm]\n![MIT License][license]\n\n[badge]: https://flat.badgen.net/travis/eddort/react-flexer/master\n[travis]: https://travis-ci.com/eddort/react-flexer\n[coverage-badge]: https://flat.badgen.net/codecov/c/github/eddort/react-flexer\n[coverage]: https://codecov.io/github/eddort/react-flexer\n[version-badge]: https://flat.badgen.net/npm/v/react-flexer\n[npm]: https://npmjs.com/package/react-flexer\n[license]: https://flat.badgen.net/badge/license/MIT/blue\n\n# react-flexer \n\n### flexbox grid layout like rebass, just faster. Built with [@quarkly/elementary](https://github.com/quarkly/elementary)\n\n## Why would you use Flexer instead of Rebass?\n - Flexer is faster than Rebass 🏃🏻\n - Flexer fully supports a system of short properties 😱\n\n## Usage\n\n```bash\n$ npm i react-flexer\n$ npm i styled-components\n```\n\n```jsx\nimport React from 'react';\nimport ReactDom from 'react-dom';\nimport { Flex, Box } from 'react-flexer';\n\nReactDom.render(\n  \u003cFlex w={1/2}\u003e\n    \u003cBox m={3}\u003e\n      Box\n    \u003c/Box\u003e\n  \u003c/Flex\u003e,\n  document.getElementById('root'),\n);\n```\n\n## Props\n\n#### Layout\n\n- [display / d](https://github.com/quarkly/elementary/blob/master/docs/props.md#display)\n- [height / h](https://github.com/quarkly/elementary/blob/master/docs/props.md#height)\n- [minHeight / mih](https://github.com/quarkly/elementary/blob/master/docs/props.md#minheight)\n- [mixHeight / mah](https://github.com/quarkly/elementary/blob/master/docs/props.md#maxheight)\n- [width / w](https://github.com/quarkly/elementary/blob/master/docs/props.md#width)\n- [minWidth / miw](https://github.com/quarkly/elementary/blob/master/docs/props.md#minwidth)\n- [maxWidth / maw](https://github.com/quarkly/elementary/blob/master/docs/props.md#maxwidth)\n- [size](https://github.com/quarkly/elementary/blob/master/docs/props.md#size)\n\n#### Spaces\n\n- [padding / p](https://github.com/quarkly/elementary/blob/master/docs/props.md#p)\n- [paddingTop / pt](https://github.com/quarkly/elementary/blob/master/docs/props.md#pt)\n- [paddingRight / pr](https://github.com/quarkly/elementary/blob/master/docs/props.md#pr)\n- [paddingBottom / pb](https://github.com/quarkly/elementary/blob/master/docs/props.md#pb)\n- [paddingLeft / pl](https://github.com/quarkly/elementary/blob/master/docs/props.md#pl)\n- [paddingX / px](https://github.com/quarkly/elementary/blob/master/docs/props.md#px)\n- [paddingY / py](https://github.com/quarkly/elementary/blob/master/docs/props.md#py)\n- [margin / m](https://github.com/quarkly/elementary/blob/master/docs/props.md#m)\n- [marginTop / mt](https://github.com/quarkly/elementary/blob/master/docs/props.md#mt)\n- [marginRight / mr](https://github.com/quarkly/elementary/blob/master/docs/props.md#mr)\n- [marginBottom / mb](https://github.com/quarkly/elementary/blob/master/docs/props.md#mb)\n- [marginLeft / ml](https://github.com/quarkly/elementary/blob/master/docs/props.md#ml)\n- [marginX / mx](https://github.com/quarkly/elementary/blob/master/docs/props.md#mx)\n- [marginY / my](https://github.com/quarkly/elementary/blob/master/docs/props.md#my)\n\n#### Flex\n\n- [alignItems / ai](https://github.com/quarkly/elementary/blob/master/docs/props.md#alignitems)\n- [alignContent / ac](https://github.com/quarkly/elementary/blob/master/docs/props.md#aligncontent)\n- [justifyItems / ji](https://github.com/quarkly/elementary/blob/master/docs/props.md#justifyitems)\n- [justifyContent / jc](https://github.com/quarkly/elementary/blob/master/docs/props.md#justifycontent)\n- [flexWrap / fxw](https://github.com/quarkly/elementary/blob/master/docs/props.md#flexwrap)\n- [flexBasis / fxb](https://github.com/quarkly/elementary/blob/master/docs/props.md#flexbasis)\n- [flexDirection / fxd](https://github.com/quarkly/elementary/blob/master/docs/props.md#flexdirection)\n- [flex / fx](https://github.com/quarkly/elementary/blob/master/docs/props.md#flex)\n- [order / ord](https://github.com/quarkly/elementary/blob/master/docs/props.md#order)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddort%2Freact-flexer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feddort%2Freact-flexer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feddort%2Freact-flexer/lists"}