{"id":13701345,"url":"https://github.com/ais-one/cookbook","last_synced_at":"2025-05-15T20:03:33.939Z","repository":{"id":37961510,"uuid":"116527230","full_name":"ais-one/cookbook","owner":"ais-one","description":"VueJS + NodeJS Evergreen Cookbook","archived":false,"fork":false,"pushed_at":"2024-11-26T23:29:20.000Z","size":7528,"stargazers_count":461,"open_issues_count":4,"forks_count":120,"subscribers_count":26,"default_branch":"main","last_synced_at":"2025-05-12T17:05:46.691Z","etag":null,"topics":["2fa","crud","docker","express","gcp","hacktoberfest","jwt","knex","nestjs","nodejs","openapi","reactjs","rest","rxjs","sso","vite","vuejs","web-components","webauthn","websocket"],"latest_commit_sha":null,"homepage":"https://dev.to/aisone/vuejs-expressjs-crud-cookbook-46l0","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/ais-one.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-07T01:04:10.000Z","updated_at":"2025-02-28T03:02:31.000Z","dependencies_parsed_at":"2024-12-18T11:10:25.678Z","dependency_job_id":null,"html_url":"https://github.com/ais-one/cookbook","commit_stats":{"total_commits":194,"total_committers":3,"mean_commits":64.66666666666667,"dds":0.4742268041237113,"last_synced_commit":"0c45fa20df0e7062fb83b34c03821dc54eb5f8bd"},"previous_names":["ais-one/vue-crud-x"],"tags_count":67,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ais-one%2Fcookbook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ais-one%2Fcookbook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ais-one%2Fcookbook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ais-one%2Fcookbook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ais-one","download_url":"https://codeload.github.com/ais-one/cookbook/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254414493,"owners_count":22067271,"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":["2fa","crud","docker","express","gcp","hacktoberfest","jwt","knex","nestjs","nodejs","openapi","reactjs","rest","rxjs","sso","vite","vuejs","web-components","webauthn","websocket"],"created_at":"2024-08-02T20:01:31.355Z","updated_at":"2025-05-15T20:03:32.310Z","avatar_url":"https://github.com/ais-one.png","language":"JavaScript","funding_links":[],"categories":["Components \u0026 Libraries","JavaScript","Recently Updated"],"sub_categories":["UI Components","[Dec 04, 2024](/content/2024/12/04/README.md)"],"readme":"![master commit](https://badgen.net/github/last-commit/ais-one/cookbook/master)\n![release](https://img.shields.io/github/v/release/ais-one/cookbook)\n[![npm version](https://badge.fury.io/js/cookbook.svg)](https://badge.fury.io/js/cookbook)\n[![npm](https://img.shields.io/npm/dm/cookbook.svg)](https://www.npmjs.com/package/cookbook)\n[![Sonarcloud Status](https://sonarcloud.io/api/project_badges/measure?project=com.lapots.breed.judge:judge-rule-engine\u0026metric=alert_status)](https://sonarcloud.io/dashboard?id=com.lapots.breed.judge:judge-rule-engine)\n[![Known Vulnerabilities](https://snyk.io/test/github/ais-one/cookbook/badge.svg)](https://snyk.io/test/github/ais-one/cookbook)\n[![MadeWithVueJs.com shield](https://madewithvuejs.com/storage/repo-shields/823-shield.svg)](https://madewithvuejs.com/p/cookbook/shield-link)\n\n### 1 - IMPORTANT - Read Me First!\n\nThe `templates` (express and vuejs template) and `libraries` (shareable libraries and tools) projects referenced in the [Recipes](recipes/README.md) are based on the two principles below.\n\n### 1.1 - Updateable Templates\n\nYour project is created using a template. If template updates, can upstream changes be merged with minimal impact on userland codes?\n\nYes and it is achieved through:\n- Design\n  - Create folder where all userland code is placed, template must NOT touch this folder\n  - template should not to be part of a monorepo \n- Process\n  - clone template and create remote called `upstream` pointing to template\n  - update framework when necessary by merging `upstream` into `origin`\n\n### 1.2 - Manageable Sharing\n\nYou have code shared between multiple projects and libraries. If the code is updated, is breaking dependents and dependencies avoidable?\n\nYes, based on the following principles:\n- Shared libraries should be isolated and versioned. Use last-known-good version and update when ready\n- Isolation and versioning can be extended to `types` (for Typescript) and `contracts` (for API)\n- minimize inter \u0026 nested dependencies, and technical debt\n\n---\n\n### 2 - General Requirements\n\n- git, github (for actions, secrets, etc) \u0026 IDE (e.g. vscode), Docker\n- unix shell (Windows use git-bash or WSL2)\n- node 20+ LTS \u0026 npm 9+ (npm i -g npm@latest `to update`)\n\n### 3 - Sandbox\n\nResearch and exploration [Sandbox](sandbox/README.md)\n\n### 4 - Docker Dev Env\n\nContainer setups for supporting apps for local development and testing [docker-devenv/README.md]()\n\n### 5 - Documentation\n\nThe [docs](docs/home.md) folder contains useful information is in the midst of a major cleanup\n\n### 6 - Useful scripts - For Use By Maintainers\n\n- `bulk-git.sh`: script to diff, pull, push git (for repos in `recipies`)\n- `bulk-npm.sh`: script to check for and/or update dependencies in package.json (for repos in `recipies`)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fais-one%2Fcookbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fais-one%2Fcookbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fais-one%2Fcookbook/lists"}