{"id":13438409,"url":"https://github.com/scup/atellier","last_synced_at":"2025-03-20T05:32:00.234Z","repository":{"id":44454032,"uuid":"49450810","full_name":"scup/atellier","owner":"scup","description":"The smartest way to share interactive components with your team.","archived":false,"fork":false,"pushed_at":"2016-09-05T21:01:31.000Z","size":9293,"stargazers_count":995,"open_issues_count":18,"forks_count":33,"subscribers_count":27,"default_branch":"development","last_synced_at":"2024-09-19T21:17:13.265Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://scup.github.io/atellier/","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/scup.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-01-11T20:00:24.000Z","updated_at":"2024-07-15T20:00:23.000Z","dependencies_parsed_at":"2022-09-14T05:51:29.658Z","dependency_job_id":null,"html_url":"https://github.com/scup/atellier","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scup%2Fatellier","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scup%2Fatellier/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scup%2Fatellier/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/scup%2Fatellier/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/scup","download_url":"https://codeload.github.com/scup/atellier/tar.gz/refs/heads/development","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":221735087,"owners_count":16872224,"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":[],"created_at":"2024-07-31T03:01:05.303Z","updated_at":"2024-10-27T21:30:18.369Z","avatar_url":"https://github.com/scup.png","language":"JavaScript","readme":"# ![atellier](http://i.imgur.com/UvDJ8c5.jpg)\n\n[![Join the chat at https://gitter.im/scup/atellier](https://badges.gitter.im/scup/atellier.svg)](https://gitter.im/scup/atellier?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n[![Dependencies Status](https://david-dm.org/scup/atellier.svg)](https://david-dm.org/scup/Atellier)\n[![Build Status](https://travis-ci.org/scup/atellier.svg?branch=development)](https://travis-ci.org/scup/atellier)\n[![Code Climate](https://codeclimate.com/github/scup/Atellier/badges/gpa.svg)](https://codeclimate.com/github/scup/Atellier)\n[![npm version](https://badge.fury.io/js/react-atellier.svg)](https://badge.fury.io/js/react-atellier)\n[![By Sprinklr](https://img.shields.io/badge/by-Sprinklr-orange.svg)](http://developers.scup.com)\n[![Gitter](https://badges.gitter.im/scup/atellier.svg)](https://gitter.im/scup/atellier?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge)\n\nA React component that works like a preview of other components. An excellent tool to show how your component works and looks with. Easy to install and configure, you can have a router in your project with Atellier and can interact with any component.\n\nImagine a universe in which you may have tools (***components***) tested in real time! This is amazing!\n\n## Online Demos\n* [Atellier and Material UI](http://scup.github.io/atellier/material-ui-atellier/)\n\n## Install\n```shell\nnpm install -g react-atellier\n```\n\n## Usage\n\n**Import Atellier**\n\nFor releases: `\u003e v0.1.0` (NEWER)\n```javascript\n...\nimport ReactAtellier from 'react-atellier';\n```\n\nFor releases: `\u003c= v0.0.14`\n```javascript\n...\nvar ReactAtellier = require('react-atellier')( React );\n\n```\n\n**Import your component**\n```javascript\n\nimport myComponent from 'myComponent';\n\nconst componentList = [{\n  componentName : myComponent.displayName,\n  component : myComponent\n}];\n\n```\n**OR your component library**\n```javascript\n\nimport myComponents from 'myComponent';\n\nconst componentList = myComponents.map( (comp)=\u003e {\n    return {\n      componentName : comp.displayName,\n      component : comp\n    }\n})\n\n```\n**pass your components to Atellier over components prop.**\n```javascript\nvar AtellierWrapper = React.createClass({\n  render: function() {\n    return (\n      \u003cReactAtellier components={componentList} /\u003e\n    );\n  }\n});\n```\n**and then you need to render the Atellier somewhere in your application.**\n```javascript\nrender((\n  \u003cRouter history={browserHistory}\u003e\n    \u003cRoute path=\"/\" component={App}\u003e\n      \u003cRoute path=\"atellier\" component={AtellierWrapper}/\u003e\n    \u003c/Route\u003e\n  \u003c/Router\u003e\n), document.body)\n```\n\n\n\n---\n\n\n\n\n\n\n\n## Todo\n- [ ] Atellier CLI (wip)\n- [ ] Import components and live update\n- [ ] Move components in `stage`\n\n## Team\n\n- [Guilherme de Souza](https://github.com/guisouza)\n- [Alberto](https://github.com/albertossilva)\n- [Érica Mitsuishi](https://github.com/mitsuishihidemi)\n- [Bruno Agutoli](https://github.com/agutoli)\n- [Daniel Allegretti](https://github.com/allegretti)\n- [João Neto](https://github.com/joaoneto)\n- [Geison](https://github.com/ogeison)\n\n# Contributors\n\n- [John Babak](https://github.com/sompylasar)\n\n## Contribute\nCome with us to make an awesome *Atellier* tool to run components in live ambient.\n\nNow, if you do not have technical knowledge and also have intend to help us, do not feel shy, [click here](https://github.com/scup/Atellier/issues) to open an issue and collaborate their ideas, the contribution may be a criticism or a compliment (why not?)\n\nWe have some conventions to contribute to the *Atellier* project, see more information in our [CONTRIBUTING.md](CONTRIBUTING.md). So please, read this before send to us a [pull requests](https://github.com/scup/Atellier/pulls).\n\n## Want help?\n- [issues](https://github.com/scup/Atellier/issues)\n- ~~IRC #react-atellier on [freenode](https://freenode.net/)~~\n- [Gitter](https://gitter.im/scup/atellier?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge)\n\n## License\n\n**React Atellier** is released under the\n[MIT license](https://github.com/scup/atellier/blob/development/LICENSE.md).\n","funding_links":[],"categories":["Uncategorized","JavaScript","Dev Tools"],"sub_categories":["Uncategorized","Miscellaneous"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscup%2Fatellier","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fscup%2Fatellier","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fscup%2Fatellier/lists"}