{"id":14976375,"url":"https://github.com/lemoncode/vuejs-by-sample","last_synced_at":"2025-10-29T02:03:04.791Z","repository":{"id":81411433,"uuid":"88156276","full_name":"Lemoncode/vuejs-by-sample","owner":"Lemoncode","description":"The goal of this project is to provide a set of step by step samples, covering core concepts of Vue.js","archived":false,"fork":false,"pushed_at":"2020-01-31T17:35:39.000Z","size":520,"stargazers_count":73,"open_issues_count":6,"forks_count":38,"subscribers_count":8,"default_branch":"master","last_synced_at":"2025-04-08T11:43:16.062Z","etag":null,"topics":["typescript","vuejs2","webpack2"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","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/Lemoncode.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-04-13T11:06:26.000Z","updated_at":"2025-01-08T11:32:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"a34b5606-6a9d-4167-b69d-66162a588721","html_url":"https://github.com/Lemoncode/vuejs-by-sample","commit_stats":{"total_commits":291,"total_committers":7,"mean_commits":41.57142857142857,"dds":"0.36769759450171824","last_synced_commit":"610484000d85e699490a06f25215ccaa348ad5eb"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Lemoncode/vuejs-by-sample","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemoncode%2Fvuejs-by-sample","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemoncode%2Fvuejs-by-sample/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemoncode%2Fvuejs-by-sample/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemoncode%2Fvuejs-by-sample/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Lemoncode","download_url":"https://codeload.github.com/Lemoncode/vuejs-by-sample/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Lemoncode%2Fvuejs-by-sample/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":281336627,"owners_count":26483860,"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","status":"online","status_checked_at":"2025-10-27T02:00:05.855Z","response_time":61,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["typescript","vuejs2","webpack2"],"created_at":"2024-09-24T13:53:47.901Z","updated_at":"2025-10-27T20:31:02.131Z","avatar_url":"https://github.com/Lemoncode.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vue.js by sample\n\nThe goal of this project is to provide a set of step by step samples, covering core concepts of Vue.js\nEach of the samples contains a `README.md` file that indicates the purpose of the sample plus an step by step guide to reproduce it.\n\n# Demos\n\n## 00 Boilerplate\n\nIn this sample we are going to setup a web project that can be easily managed\nby webpack.\n\nWe won't install anything related to Vue.js, just some basic plumbing.\n\nWe will setup an initial \u003cabbr title=\"Node.js package manager, a package manager for the JavaScript runtime environment Node.js\"\u003enpm\u003c/abbr\u003e project and give support to TypeScript. Then we will create a Hello World TypeScript sample.\n\nSummary steps:\n\n- Prerequisites: Install Node.js\n- Initialize **package.json** (with `npm init`)\n- Install:\n  - Webpack and webpack-dev-server.\n  - TypeScript.\n- Setup **webpack.config.js**\n- Create a test js file.\n- Create a simple HTML file.\n\n## 01 Hello VueJS\n\nIn this sample we are going to create our first Vue.js SFC and connect it with the DOM.\n\nWe will take a startup point sample _00 Boilerplate_.\n\nSummary steps:\n\n- Install Vue.js devtools.\n- Install `vue.js` library and others dependencies.\n- Configure webpack to work with `vue.js`.\n- Update `index.html`.\n- Update `main.ts`.\n\n## 02 Properties\n\nIn this sample we are going to learn a basic concept, handling properties.\n\nWe will take a startup point sample _01 Hello VueJS_.\n\nSummary steps:\n\n- Update `App.vue` with and input element.\n- Use `v-model` directive.\n- Create our first component.\n- Passing properties from `main.ts` to `hello.ts`.\n- Other approach to work with properties.\n\n## 03 Login\n\nIn this sample we are going to create a `login` page.\n\nWe will take a startup point sample _02 Properties_.\n\nSummary steps:\n\n- Delete `Hello.vue`.\n- Update `App.vue`.\n- Update `index.html`.\n- Create `login` page.\n- Configure router navigation.\n- Create `recipe list` page.\n- Create `LoginEntity` model.\n- Create fake `login` API.\n- Check valid login.\n\n## 04 Recipe List\n\nIn this sample we are going to create a `recipe list` page.\n\nWe will take a startup point sample _03 Login_.\n\nSummary steps:\n\n- Create `recipe` model.\n- Create fake `recipe` API.\n- Create `recipe list` page container.\n- Update `recipe list` page.\n- Navigate to `edit recipe` page.\n\n## 05 Edit Recipe\n\nIn this sample we are going to create a `edit recipe` page.\n\nWe will take a startup point sample _04 Recipe List_.\n\nSummary steps:\n\n- Create `API` methods.\n- Create `pageContainer`.\n- Update `page`.\n- Create `common` components.\n- Create `edit recipe` form.\n- Add `form validations` with `lc-form-validation`.\n\n# About Basefactor + Lemoncode\n\nWe are an innovating team of Javascript experts, passionate about turning your ideas into robust products.\n\n[Basefactor, consultancy by Lemoncode](http://www.basefactor.com) provides consultancy and coaching services.\n\n[Lemoncode](http://lemoncode.net/services/en/#en-home) provides training services.\n\nFor the LATAM/Spanish audience we are running an Online Front End Master degree, more info: http://lemoncode.net/master-frontend\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flemoncode%2Fvuejs-by-sample","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flemoncode%2Fvuejs-by-sample","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flemoncode%2Fvuejs-by-sample/lists"}