{"id":19910022,"url":"https://github.com/aitoroses/meteor-famono","last_synced_at":"2025-07-14T16:39:33.620Z","repository":{"id":16006236,"uuid":"18749615","full_name":"aitoroses/Meteor-famono","owner":"aitoroses","description":"Adds require bundler to Meteor use with Famo.us","archived":false,"fork":false,"pushed_at":"2014-04-14T09:39:32.000Z","size":136,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-22T12:09:13.897Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":false,"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/aitoroses.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":"2014-04-14T05:39:03.000Z","updated_at":"2020-08-08T07:29:35.000Z","dependencies_parsed_at":"2022-09-14T07:01:51.512Z","dependency_job_id":null,"html_url":"https://github.com/aitoroses/Meteor-famono","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/aitoroses/Meteor-famono","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aitoroses%2FMeteor-famono","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aitoroses%2FMeteor-famono/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aitoroses%2FMeteor-famono/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aitoroses%2FMeteor-famono/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aitoroses","download_url":"https://codeload.github.com/aitoroses/Meteor-famono/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aitoroses%2FMeteor-famono/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265319578,"owners_count":23746364,"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-11-12T21:17:18.683Z","updated_at":"2025-07-14T16:39:33.587Z","avatar_url":"https://github.com/aitoroses.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"FAMONO\n======\n\n### What is it?\n\nWell in short it's a Famo.us package system inside of the Meteor.js Package system - or is it requireJS? one could actually remove the `standard-app-packages` from the app and have a pure Famo.us app.\n\n### Install\n```bash\n$ mrt add famono\n```\n*Requires: `Meteor`, `Meteorite` and ofcourse `git` all easy to install*\n\n### Edit the library register\n__What?__\nWell - you can add any library code you want to - even none Famo.us stuff.\n\n__How:__\nWhen you install the package you will get a `lib/smart.require` in your main app folder, and it would look something like:\n\n```js\n{\n  \"famous\": {\n    \"git\": \"https://github.com/Famous/famous.git\"\n  },\n  \"famous-polyfills\": {\n    \"git\": \"https://github.com/Famous/polyfills.git\"\n  }\n}\n```\n*you can mount any git repo on a namespace, oh and in Meteor editing this file will trigger either an add/download or removal of the changed namespace - LIVE.*\n\nThis enables you to do:\n```js\n// Make sure dom got a body...\nMeteor.startup(function() {\n    \n    var Engine           = require(\"famous/core/Engine\");\n    var Modifier         = require(\"famous/core/Modifier\");\n    var Surface          = require(\"famous/core/Surface\");\n    var RenderController = require(\"famous/views/RenderController\");\n\n    var mainContext = Engine.createContext();\n    var renderController = new RenderController();\n    var surfaces = [];\n    var counter = 0;\n\n    for (var i = 0; i \u003c 10; i++) {\n        surfaces.push(new Surface({\n             content: \"Surface: \" + (i + 1),\n             size: [200, 200],\n             properties: {\n                 backgroundColor: \"hsl(\" + (i * 360 / 10) + \", 100%, 50%)\",\n                 lineHeight: \"200px\",\n                 textAlign: 'center'\n             }\n        }));\n    }\n\n    renderController.show(surfaces[0]);\n\n    Engine.on(\"click\", function() {\n        var next = (counter++ + 1) % surfaces.length;\n        this.show(surfaces[next]);\n    }.bind(renderController));\n\n    mainContext.add(new Modifier({origin: [.5, .5]})).add(renderController);\n\n});\n```\n\n### Will all the stuff be loaded to the client??\n\nNope - the package scans your code and figure outs dependencies at your edit.\n\n\n\nKind regards Morten (aka raix)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faitoroses%2Fmeteor-famono","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faitoroses%2Fmeteor-famono","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faitoroses%2Fmeteor-famono/lists"}