{"id":19417211,"url":"https://github.com/effector/docs-v21","last_synced_at":"2026-06-13T12:33:00.298Z","repository":{"id":103703466,"uuid":"604240641","full_name":"effector/docs-v21","owner":"effector","description":"Documentation for the previous release of effector","archived":false,"fork":false,"pushed_at":"2023-11-29T09:49:07.000Z","size":590,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-10-21T18:37:05.405Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://v21.effector.dev/","language":"JavaScript","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/effector.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-02-20T16:23:41.000Z","updated_at":"2023-04-15T09:11:23.000Z","dependencies_parsed_at":null,"dependency_job_id":"5dca54ed-ffad-40a5-b099-d68f01563a8d","html_url":"https://github.com/effector/docs-v21","commit_stats":{"total_commits":6,"total_committers":2,"mean_commits":3.0,"dds":"0.33333333333333337","last_synced_commit":"a26712ce74719daa3d9bf3270e99f5e8ddac5c96"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/effector/docs-v21","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v21","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v21/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v21/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v21/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/effector","download_url":"https://codeload.github.com/effector/docs-v21/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v21/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34285190,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-13T02:00:06.617Z","response_time":62,"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":[],"created_at":"2024-11-10T13:08:08.269Z","updated_at":"2026-06-13T12:33:00.283Z","avatar_url":"https://github.com/effector.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"This website was created with [Docusaurus](https://docusaurus.io/).\n\n# What's In This Document\n\n* [Get Started in 5 Minutes](#get-started-in-5-minutes)\n* [Directory Structure](#directory-structure)\n* [Editing Content](#editing-content)\n* [Adding Content](#adding-content)\n* [Full Documentation](#full-documentation)\n\n# Get Started in 5 Minutes\n\n1. Make sure all the dependencies for the website are installed:\n\n```sh\n# Install dependencies\n$ yarn\n```\n2. Run your dev server:\n\n```sh\n# Start the site\n$ yarn start\n```\n\n## Directory Structure\n\nYour project file structure should look something like this\n\n```\nmy-docusaurus/\n  docs/\n    doc-1.md\n    doc-2.md\n    doc-3.md\n  website/\n    blog/\n      2016-3-11-oldest-post.md\n      2017-10-24-newest-post.md\n    core/\n    node_modules/\n    pages/\n    static/\n      css/\n      img/\n    package.json\n    sidebar.json\n    docusaurus.config.js\n```\n\n# Editing Content\n\n## Editing an existing docs page\n\nEdit docs by navigating to `docs/` and editing the corresponding document:\n\n`docs/doc-to-be-edited.md`\n\n```markdown\n---\nid: page-needs-edit\ntitle: This Doc Needs To Be Edited\n---\n\nEdit me...\n```\n\nFor more information about docs, click [here](https://docusaurus.io/docs/en/navigation)\n\n## Editing an existing blog post\n\nEdit blog posts by navigating to `website/blog` and editing the corresponding post:\n\n`website/blog/post-to-be-edited.md`\n```markdown\n---\nid: post-needs-edit\ntitle: This Blog Post Needs To Be Edited\n---\n\nEdit me...\n```\n\nFor more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)\n\n# Adding Content\n\n## Adding a new docs page to an existing sidebar\n\n1. Create the doc as a new markdown file in `/docs`, example `docs/newly-created-doc.md`:\n\n```md\n---\nid: newly-created-doc\ntitle: This Doc Needs To Be Edited\n---\n\nMy new content here..\n```\n\n1. Refer to that doc's ID in an existing sidebar in `website/sidebar.json`:\n\n```javascript\n// Add newly-created-doc to the Getting Started category of docs\n{\n  \"docs\": {\n    \"Getting Started\": [\n      \"quick-start\",\n      \"newly-created-doc\" // new doc here\n    ],\n    ...\n  },\n  ...\n}\n```\n\nFor more information about adding new docs, click [here](https://docusaurus.io/docs/en/navigation)\n\n## Adding a new blog post\n\n1. Make sure there is a header link to your blog in `website/docusaurus.config.js`:\n\n`website/docusaurus.config.js`\n```javascript\nheaderLinks: [\n    ...\n    { blog: true, label: 'Blog' },\n    ...\n]\n```\n\n2. Create the blog post with the format `YYYY-MM-DD-My-Blog-Post-Title.md` in `website/blog`:\n\n`website/blog/2018-05-21-New-Blog-Post.md`\n\n```markdown\n---\nauthor: Frank Li\nauthorURL: https://twitter.com/foobarbaz\nauthorFBID: 503283835\ntitle: New Blog Post\n---\n\nLorem Ipsum...\n```\n\nFor more information about blog posts, click [here](https://docusaurus.io/docs/en/adding-blog)\n\n## Adding items to your site's top navigation bar\n\n1. Add links to docs, custom pages or external links by editing the headerLinks field of `website/docusaurus.config.js`:\n\n`website/docusaurus.config.js`\n```javascript\n{\n  headerLinks: [\n    ...\n    /* you can add docs */\n    { doc: 'my-examples', label: 'Examples' },\n    /* you can add custom pages */\n    { page: 'help', label: 'Help' },\n    /* you can add external links */\n    { href: 'https://github.com/facebook/Docusaurus', label: 'GitHub' },\n    ...\n  ],\n  ...\n}\n```\n\nFor more information about the navigation bar, click [here](https://docusaurus.io/docs/en/navigation)\n\n## Adding custom pages\n\n1. Docusaurus uses React components to build pages. The components are saved as .js files in `website/pages/en`:\n1. If you want your page to show up in your navigation header, you will need to update `website/docusaurus.config.js` to add to the `headerLinks` element:\n\n`website/docusaurus.config.js`\n```javascript\n{\n  headerLinks: [\n    ...\n    { page: 'my-new-custom-page', label: 'My New Custom Page' },\n    ...\n  ],\n  ...\n}\n```\n\nFor more information about custom pages, click [here](https://docusaurus.io/docs/en/custom-pages).\n\n# Full Documentation\n\nFull documentation can be found on the [website](https://docusaurus.io/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feffector%2Fdocs-v21","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feffector%2Fdocs-v21","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feffector%2Fdocs-v21/lists"}