{"id":19883288,"url":"https://github.com/art-in/microcosm","last_synced_at":"2025-08-24T17:14:02.434Z","repository":{"id":44408657,"uuid":"41671730","full_name":"art-in/microcosm","owner":"art-in","description":"notebook as a graph","archived":false,"fork":false,"pushed_at":"2022-07-10T18:09:10.000Z","size":3845,"stargazers_count":7,"open_issues_count":19,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-13T05:44:18.482Z","etag":null,"topics":["graph","notebook","personal-knowledge-base"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"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/art-in.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}},"created_at":"2015-08-31T11:24:54.000Z","updated_at":"2023-10-11T18:09:04.000Z","dependencies_parsed_at":"2022-07-12T18:20:50.793Z","dependency_job_id":null,"html_url":"https://github.com/art-in/microcosm","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/art-in/microcosm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art-in%2Fmicrocosm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art-in%2Fmicrocosm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art-in%2Fmicrocosm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art-in%2Fmicrocosm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/art-in","download_url":"https://codeload.github.com/art-in/microcosm/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/art-in%2Fmicrocosm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271911912,"owners_count":24842637,"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-08-24T02:00:11.135Z","response_time":111,"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":["graph","notebook","personal-knowledge-base"],"created_at":"2024-11-12T17:19:47.509Z","updated_at":"2025-08-24T17:14:02.390Z","avatar_url":"https://github.com/art-in.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# microcosm ![GitHub Actions](https://github.com/art-in/microcosm/actions/workflows/test.yml/badge.svg)\n\nmicrocosm is a [note taking](https://en.wikipedia.org/wiki/Note-taking) web app, which organizes notes in a [graph](https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)).\n\nuse case is [personal knowledge base](https://en.wikipedia.org/wiki/Personal_knowledge_base) for crystallizing ideas and saving important stuff.\n\n[Demo (rus)](https://artin.space/microcosm/?user=demo\u0026pass=demo)\n\n# Features\n\n- [x] [pwa](https://en.wikipedia.org/wiki/Progressive_web_app)\n  - [x] responsive (phone, tablet, desktop)\n  - [x] secure\n  - [x] offline ready\n  - [x] installable\n- [x] view modes:\n  - [x] mindmap\n  - [x] zen (simple text)\n- [x] markdown\n- [x] import from Evernote\n \n# Install\n\n```\ngit clone https://github.com/art-in/microcosm\ncd microcosm\nnpm install\nnpm run build\nnpm run serve\n```\n \n# Config\n\nThere is [`config.js`](https://github.com/art-in/microcosm/blob/master/config.js) file with all the options and descriptions for them.\n \n# Tasks\n\n\u003c!-- use raw html as github flavored markdown does not support header-less tables --\u003e\n\u003ctable\u003e\n  \u003ctr\u003e\u003ctd\u003enpm start\u003c/td\u003e  \u003ctd\u003emake \u0026 serve dev build (watch mode)\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003enpm run build\u003c/td\u003e  \u003ctd\u003emake production build  \u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003enpm run serve\u003c/td\u003e  \u003ctd\u003eserve production build\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003enpm run test\u003c/td\u003e  \u003ctd\u003erun all tests  \u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003enpm run test:static\u003c/td\u003e  \u003ctd\u003erun static tests (lint, types, etc.)  \u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003enpm run test:unit\u003c/td\u003e  \u003ctd\u003erun unit tests  \u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003enpm run test:unit:watch\u003c/td\u003e  \u003ctd\u003erun unit tests (watch mode)\u003c/td\u003e\u003c/tr\u003e\n  \u003ctr\u003e\u003ctd\u003enpm run deploy:docker\u003c/td\u003e  \u003ctd\u003epublish docker image with production build to Docker Hub\u003c/td\u003e\u003c/tr\u003e\n\u003c/table\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fart-in%2Fmicrocosm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fart-in%2Fmicrocosm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fart-in%2Fmicrocosm/lists"}