{"id":20141219,"url":"https://github.com/alekcz/maji","last_synced_at":"2025-04-09T18:41:00.244Z","repository":{"id":118112588,"uuid":"83640485","full_name":"alekcz/maji","owner":"alekcz","description":"An atom package for prototyping interactions using mo.js and framer.js.","archived":false,"fork":false,"pushed_at":"2018-01-10T21:17:40.000Z","size":276,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T10:23:20.572Z","etag":null,"topics":["animation-library","atom","atom-editor","atom-plugin","framerjs","maji-studio","mojs","prototyping-interactions"],"latest_commit_sha":null,"homepage":"https://medium.com/@alekcz/unicorn-express-framer-js-for-everyone-7cdce924a86","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/alekcz.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2017-03-02T05:59:53.000Z","updated_at":"2020-12-24T21:47:18.000Z","dependencies_parsed_at":"2023-09-26T03:46:28.563Z","dependency_job_id":null,"html_url":"https://github.com/alekcz/maji","commit_stats":{"total_commits":58,"total_committers":1,"mean_commits":58.0,"dds":0.0,"last_synced_commit":"46bf1d920cd4975e38dca4483d4d6d7cb7577886"},"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fmaji","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fmaji/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fmaji/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/alekcz%2Fmaji/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/alekcz","download_url":"https://codeload.github.com/alekcz/maji/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247427844,"owners_count":20937355,"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":["animation-library","atom","atom-editor","atom-plugin","framerjs","maji-studio","mojs","prototyping-interactions"],"created_at":"2024-11-13T21:56:47.431Z","updated_at":"2025-04-09T18:41:00.225Z","avatar_url":"https://github.com/alekcz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"![maji-studio-banner](https://maji-studio-examples.firebaseapp.com/assets/maji-studio-github.png)\n\n# Maji Studio\n\nAn atom package for prototyping interactions using mo.js and framer.js.\n\n## Project status\nActivity: In active development\n\nStability: Unknown (assume unstable)\n\n## Installing Maji Studio\n\n### Install Atom Editor\nMaji Studio is actually an add-on or package for [Atom Editor](https://atom.io/). You need to\ninstall Atom first (\u003e v.1.23.0)\n\n\n#### Installing Atom on Ubuntu\n1. Open terminal (Ctrl+Alt+T)\n2. Run the command: `sudo add-apt-repository ppa:webupd8team/atom`\n3. Run the command: `sudo apt update; sudo apt install atom`\n\n#### Installing Atom on OS X\n1. Download the zip file [https://atom.io/download/mac](https://atom.io/download/mac)\n2. Extract the zip file\n3. Drop the Atom app into Applications\n\n#### Installing Atom on Windows\n1. Download the installer file [https://atom.io/download/windows](https://atom.io/download/windows)\n2. Run the installer\n3. Next. Next. Finish.\n\n\n### Installing the Maji Studio Plugin\n\n1. Open `Atom \u003e Preferences` (or `File \u003e Settings` on Windows).\n2. In the `Setting` tab select `Install`\n3. Search for Maji Studio\n4. Install Maji Studio\n\n\n##  Maji Studio Crash Course\n\n### New Maji Studio Project\n1. Use the menu bar and select `Maji Studio \u003e New Maji Studio Project`.\n2. Select `Create Project` on the popup that appears.\n3. The new project will me create in you user directory in a folder called `maji/\u003crandom-project-name\u003e`.\n4. Maji Studio will automatically open the newly created project.\n\n### Preview mode\nIn order to view the prototype (only mobile prototypes are available at the moment), preview mode needs to\nbe activated. To activate Preview Mode using the menu bar select `Maji Studio \u003e Show Preview` or press `Ctrl+Alt+M`.\n\nPreview Mode can only be activated if there is an active workspace. Open a folder to create a workspace or `.framer` file.\n\nThe preview pane refreshes each time a file is saved.\n\n### Library and Language Choices\n\nCode may be written in either `app.js` or `app.coffee` depending on whether you are using mo.js or framer.js.\n\n#### Mo.js\nIf animating or prototyping using [mo.js](http://mojs.io/) the better language choice is javascript.\nCoffee script may also be attempted. It may end badly.\n\n#### Framer.js\nIf animating or prototyping using [framer.js]() ([github](https://github.com/koenbok/Framer)) either javascript or coffeescript\nmay be used.\n\n#### Selecting the library and language\n\n- To select mo.js as the animation library the first command in app.js should be `useMojs();`\n- To select framer.js as the animation library (using **javascript**) the first command in app.js should be `useFramer();`\n- To select framer.js as the animation library (using **coffeescript**) the first command in app.js should be `useFramerWithCoffee();`\n\nIf coffeescript is selected write your code in `app.coffee`\n\n\n### Shortcuts\nThere are current only a few commands in Maji Studio. They are as follows.\n\n1. Open preview mode: `Ctrl+Alt+M`\n2. Close preview mode: `Ctrl+Alt+C`\n3. Create new Maji Studio Poject: `Ctrl+Alt+N`\n\n\n## Useful links\n\n### Mo.js\nThe motion graphics toolbelt for the web\n\nWebsite: [http://mojs.io/](http://mojs.io/)\n\nGithub:  [legomushroom/mojs](https://github.com/legomushroom/mojs)\n\nCreators twitter handle: [@legomushroom](https://twitter.com/legomushroom)\n\n### Framer.js\nFramer - Design Everything\n\nWebsite: [https://framer.com/](https://framer.com/)\n\nGithub:  [koenbok/Framer](https://github.com/koenbok/Framer)\n\nCreators twitter handle: [@koenbok](https://twitter.com/koenbok)\n\n## Licenses\n\n### Mo.js\nThe MIT License (MIT)\n\nCopyright (c) Oleg Solomka [@legomushroom](https://twitter.com/legomushroom) legomushroom@gmail.com\n\n### Framer.js\nThe MIT License (MIT)\n\nCopyright (c) 2014 Koen Bok [@koenbok](https://twitter.com/koenbok)\n\n\n### Maji Studio\nThe MIT License (MIT)\n\nCopyright (c) 2017 Alexander Oloo [@alekcz](https://twitter.com/alekcz) alekcz@gmail.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falekcz%2Fmaji","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falekcz%2Fmaji","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falekcz%2Fmaji/lists"}