{"id":21873475,"url":"https://github.com/raidenyn/personal-site","last_synced_at":"2026-04-14T19:32:50.571Z","repository":{"id":145129926,"uuid":"113825513","full_name":"raidenyn/personal-site","owner":"raidenyn","description":"My personal site as boilerplate for vue projects","archived":false,"fork":false,"pushed_at":"2018-09-17T16:59:29.000Z","size":435,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-21T23:15:30.776Z","etag":null,"topics":[],"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/raidenyn.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-12-11T07:14:03.000Z","updated_at":"2018-09-17T16:59:30.000Z","dependencies_parsed_at":null,"dependency_job_id":"f7ef6303-be3a-475a-947f-fbb08a8a8a8c","html_url":"https://github.com/raidenyn/personal-site","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"purl":"pkg:github/raidenyn/personal-site","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raidenyn%2Fpersonal-site","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raidenyn%2Fpersonal-site/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raidenyn%2Fpersonal-site/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raidenyn%2Fpersonal-site/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/raidenyn","download_url":"https://codeload.github.com/raidenyn/personal-site/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/raidenyn%2Fpersonal-site/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31812968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T18:05:02.291Z","status":"ssl_error","status_checked_at":"2026-04-14T18:05:01.765Z","response_time":153,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-28T07:08:11.566Z","updated_at":"2026-04-14T19:32:50.556Z","avatar_url":"https://github.com/raidenyn.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# My Home Page\n\nThis is home page of [my site](https://ynagaev.ru). It was created as starting point for my other projects. So you can find here a lot of excessive and unused details for current project but they can be useful for yours.\n\n## Main features\n\n* Main code are based on [Vue framework 2.5.*](https://vuejs.org/)\n* All site code and build configurations wrote on [TypeScript 2.8.*](https://www.typescriptlang.org/)\n* [TSLint](https://palantir.github.io/tslint/) rules for all scripts\n* For storing date the site uses on [Vuex 3.0.*](https://vuex.vuejs.org)\n* Server Side Rendering (SSR) based on [vue-ssr](https://ssr.vuejs.org/)\n* [Vue Router](https://router.vuejs.org/) for site routing\n* Supporting [React like](https://reactjs.org/docs/jsx-in-depth.html) render functions inside *.tsx and *.vue files\n* Using [Babel 7](https://github.com/babel/babel/wiki/Babel-7) for effective code transpilation to ES5.\n* Using [Bootstrap 4](https://getbootstrap.com/) as style framework with [SASS](http://sass-lang.com/) compilation and modifications via sass variables.\n* Using [Font Awesome 5](https://fontawesome.com/) for site icons.\n* Generating site favicons for all popular platforms on build\n* Using [WorkBox 3](https://developers.google.com/web/tools/workbox/) tools for working with Service Worker features\n* Using Server Side [Component Cache](https://ssr.vuejs.org/en/caching.html)\n* Run client side tests on [Karma](https://karma-runner.github.io/1.0/index.html)\n* Generate test coverage report by [Istanbul project](https://istanbul.js.org/)\n* Multilanguage supporting (*please see notes bellow*)\n* Supporting [Docker](https://www.docker.com/) container as build destination\n\n### Multilanguage\nProvided way for multilanguage supportng is not common and shouldn't be used for site with many languages.\nBut if you have only 2 or 3 languages you can follow by this way.\n\nYou can mark language relative part of you template (doesn't matter vue or react) by `lang` attribute:\n``` html\n\u003cdiv\u003e\n    \u003cspan lang=\"ru\"\u003eЭто русский текст\u003c/span\u003e\n    \u003cspan lang=\"en\"\u003eIt is English text\u003c/span\u003e\n\u003cdiv\u003e\n```\n\nWebpack loader just remove all tags with not current text, so at the result you receive for `lang='en'`:\n``` html\n\u003cdiv\u003e\n\n    \u003cspan lang=\"en\"\u003eIt is English text\u003c/span\u003e\n\u003cdiv\u003e\n```\nAnd for `lang='ru'`:\n``` html\n\u003cdiv\u003e\n    \u003cspan lang=\"ru\"\u003eЭто русский текст\u003c/span\u003e\n\n\u003cdiv\u003e\n```\n\nIn this case Webpack creates two different packages for each language.\n\nAlso you can set translation in any places outside html elements. It can be html attributes or javascript variables:\n``` html\n\u003cdiv\u003e\n    \u003cinput name=\"name\" placeholder=\"$lang-en(Your name)$lang-ru(Ваше имя)\"/\u003e\n\u003cdiv\u003e\n```\n\n``` ts\nclass MyComponent {\n    public userText = '$lang-en(Warning)$lang-ru(Внимание)';\n}\n```\n\n## Build Setup\n\n``` bash\n# install dependencies\nyarn install\n\n# build client and server side in watch mode, run server on 8080 port with SSR\nyarn dev\n\n# run all Karma tests\nyarn test\n\n# run all Karma tests in watch mode\nyarn test:watch\n\n# run the test suite and generate a coverage report\nyarn run coverage\n\n# Run the tests and build the site in production mode\nyarn build\n\n# clean the production build\nyarn clean\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraidenyn%2Fpersonal-site","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fraidenyn%2Fpersonal-site","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fraidenyn%2Fpersonal-site/lists"}