{"id":14954532,"url":"https://github.com/meteor/tutorials","last_synced_at":"2025-10-03T06:31:16.139Z","repository":{"id":34809774,"uuid":"38795867","full_name":"meteor/tutorials","owner":"meteor","description":"The Meteor tutorials from meteor.com","archived":true,"fork":false,"pushed_at":"2021-10-20T15:08:47.000Z","size":1382,"stargazers_count":181,"open_issues_count":46,"forks_count":103,"subscribers_count":38,"default_branch":"master","last_synced_at":"2024-09-25T13:04:46.744Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://www.meteor.com/tutorials","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/meteor.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":"2015-07-09T03:55:57.000Z","updated_at":"2024-08-13T18:00:35.000Z","dependencies_parsed_at":"2022-08-30T15:10:43.339Z","dependency_job_id":null,"html_url":"https://github.com/meteor/tutorials","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/meteor%2Ftutorials","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meteor%2Ftutorials/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meteor%2Ftutorials/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meteor%2Ftutorials/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meteor","download_url":"https://codeload.github.com/meteor/tutorials/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":219876354,"owners_count":16554747,"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-09-24T13:04:07.380Z","updated_at":"2025-10-03T06:31:15.750Z","avatar_url":"https://github.com/meteor.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"We no longer use this repository, we have now different repos for each technology:\n\n- https://github.com/meteor/react-tutorial\n- https://github.com/meteor/blaze-tutorial\n- https://github.com/meteor/vue-tutorial\n- https://github.com/meteor/svelte-tutorial\n- https://github.com/meteor/angular-tutorial\n\n# Official Meteor tutorials\n\nThis repository contains the content and view code for the official Meteor tutorials at [meteor.com](https://www.meteor.com/tutorials/blaze/creating-an-app).\n\nFeel free to submit a pull request to improve the content!\n\n### Tutorial content\n\n1. [Blaze tutorial](https://www.meteor.com/tutorials/blaze/creating-an-app): [`/content/blaze`](https://github.com/meteor/tutorials/tree/master/content/blaze)\n2. [Angular tutorial](https://www.meteor.com/tutorials/angular/creating-an-app): [`/content/angular`](https://github.com/meteor/tutorials/tree/master/content/angular)\n3. [React tutorial - NEW FORMAT](https://react-tutorial.meteor.com): [`/content/react`](https://github.com/meteor/react-tutorial/)\n4. [Vue tutorial](https://www.meteor.com/tutorials/vue/creating-an-app): [`/content/vue`](https://github.com/meteor/tutorials/tree/master/content/vue)\n5. [Svelte tutorial](https://www.meteor.com/tutorials/svelte/creating-an-app): [`/content/svelte`](https://github.com/meteor/tutorials/tree/master/content/svelte)\n\n### Tutorial step-by-step repositories\n\nWe also maintain all of the tutorials as step-by-step git repositories here:\n\n1. [Blaze](https://github.com/meteor/simple-todos)\n2. [Angular](https://github.com/meteor/simple-todos-angular)\n3. [React - NEW FORMAT](https://github.com/meteor/react-tutorial/)\n4. [Vue](https://github.com/meteor/simple-todos-vue)\n5. [Svelte](https://github.com/meteor/simple-todos-svelte)\n\n### Tutorial viewer\n\nIf you are editing the tutorials, use this simple app to view them: https://github.com/meteor/tutorial-viewer\n\n## Tutorial workflow\n\n### Editing the prose\n\nJust edit the markdown files in `/content/`.\n\n### Editing code snippets\n\nThe code snippets are generated from the step-by-step git repositories which are git submodules in `/repos`. Each code snippet is its own commit. Commit messages follow the following format:\n\n```\nStep 3.1: Add some feature\n```\n\nYou might also want to make sure that all of your files end with a newline so that you don't get an annoying \"No newline at end of file\" diff.\n\nAfter using `git rebase -i --root` to massage the repository into the desired state, run the script to update the generated files:\n\n```sh\n./scripts/process-repo.rb blaze\n```\n\nThe commit with this message can then be included in the content with the following code snippet:\n\n```html\n{{\u003e DiffBox step=\"3.1\" tutorialName=\"simple-todos\"}}\n```\n\nYou should replace `simple-todos` with the correct tutorial name (defined by calling `DiffBox.registerTutorial`).\n\nYou're done! Make sure to commit the changes to all of the generated files.\n\n## Repository layout\n\nThis repository is a Meteor package; it's currently not published, but you can clone it and use it as a local package in an app.\n\nThe different parts of the repository have quite different responsibilities, but they are somewhat tightly coupled so it doesn't make sense to split them into separate packages at this point.\n\n3. `/content/` The actual tutorial prose content, in Markdown format.\n4. `/generated/` (don't edit manually) This directory contains Git patch files generated from the step-by-step repos.\n5. `/repos/` This directory contains git submodules of all three step-by-step tutorial repositories.\n6. `/scripts/` This contains a script that is used to update `/generated/` from the repositories in `/repos/`.\n\n\n## Updating Sub Modules\n\n1. `git submodule update --init --recursive`\n2. `meteor`\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeteor%2Ftutorials","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeteor%2Ftutorials","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeteor%2Ftutorials/lists"}