{"id":19417220,"url":"https://github.com/effector/docs-v20","last_synced_at":"2026-06-13T03:32:37.345Z","repository":{"id":103703493,"uuid":"604238004","full_name":"effector/docs-v20","owner":"effector","description":"Documentation for the previous release of effector","archived":false,"fork":false,"pushed_at":"2023-11-29T09:53:15.000Z","size":290,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-10-29T18:37:53.489Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://v20.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:17:11.000Z","updated_at":"2023-04-15T09:11:26.000Z","dependencies_parsed_at":null,"dependency_job_id":"c11ad099-7294-43dd-8a1e-ad18a7caf468","html_url":"https://github.com/effector/docs-v20","commit_stats":{"total_commits":5,"total_committers":1,"mean_commits":5.0,"dds":0.0,"last_synced_commit":"389202e6de00fc08a63c0921b2dce1081c3d8a9f"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v20","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v20/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v20/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/effector%2Fdocs-v20/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/effector","download_url":"https://codeload.github.com/effector/docs-v20/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239727284,"owners_count":19687145,"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-11-10T13:08:11.099Z","updated_at":"2026-06-13T03:32:32.326Z","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-v20","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feffector%2Fdocs-v20","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feffector%2Fdocs-v20/lists"}