{"id":18338801,"url":"https://github.com/tableflip/meteor-tachyons","last_synced_at":"2026-01-21T07:35:22.027Z","repository":{"id":42416746,"uuid":"62129070","full_name":"tableflip/meteor-tachyons","owner":"tableflip","description":"How to make the web look nice with Tachyons from the comfort of a Meteor.","archived":false,"fork":false,"pushed_at":"2016-06-28T09:41:50.000Z","size":3,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-09T20:46:17.109Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","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/tableflip.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}},"created_at":"2016-06-28T09:40:35.000Z","updated_at":"2017-07-02T10:24:12.000Z","dependencies_parsed_at":"2022-09-21T19:03:08.703Z","dependency_job_id":null,"html_url":"https://github.com/tableflip/meteor-tachyons","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/tableflip/meteor-tachyons","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tableflip%2Fmeteor-tachyons","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tableflip%2Fmeteor-tachyons/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tableflip%2Fmeteor-tachyons/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tableflip%2Fmeteor-tachyons/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tableflip","download_url":"https://codeload.github.com/tableflip/meteor-tachyons/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tableflip%2Fmeteor-tachyons/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28629915,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-21T04:47:28.174Z","status":"ssl_error","status_checked_at":"2026-01-21T04:47:22.943Z","response_time":86,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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-05T20:15:31.757Z","updated_at":"2026-01-21T07:35:21.996Z","avatar_url":"https://github.com/tableflip.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Meteor and Tachyons\n\nHow to make the web look nice with [Tachyons CSS], from the comfort of a Meteor.\n\nCreate a meteor project\n\n```sh\nmeteor create meteor-tachyons\ncd meteor-tachyons\n```\n\nAdd postcss. This entails dropping meteors default css minifier, which works fine, but we want autoprefixer and inlined css imports and and all that good stuff. See: http://guide.meteor.com/build-tool.html#postcss for more info.\n\n```sh\nmeteor remove standard-minifier-css\nmeteor add juliancwirko:postcss\n```\n\n```sh\nnpm install --save-dev postcss-easy-import autoprefixer\n```\n\nAdd config to tell autoprefixer what browsers to add vendor prefixes for:\n\n```json\n  \"postcss\": {\n    \"plugins\": {\n      \"postcss-easy-import\": {},\n      \"autoprefixer\": {\n        \"browsers\": [\n          \"last 2 versions\"\n        ]\n      }\n    }\n  }\n  ```\n\n  Install tachyons and import it from your `main.css`\n\n  ```sh\n  npm install --save tachyons\n  ```\n\n  ```css\n  @import 'tachyons'\n  ```\n\n  And start using the [subatomic helpers] it offers in your html\n\n  ```html\n  \u003cbody class=\"sans-serif measure pa6\"\u003e\n    \u003ch1 class=\"f-6\"\u003eWelcome to Meteor!\u003c/h1\u003e\n    {{\u003e hello}}\n    {{\u003e info}}\n  \u003c/body\u003e\n  ```\n\n\n\n---\n\n[Tachyons CSS]: http://tachyons.io/\n[subatomic helpers]: http://tachyons.io/docs/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftableflip%2Fmeteor-tachyons","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftableflip%2Fmeteor-tachyons","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftableflip%2Fmeteor-tachyons/lists"}