{"id":13398001,"url":"https://github.com/benweet/stackedit","last_synced_at":"2025-04-23T23:04:09.321Z","repository":{"id":7627350,"uuid":"8986773","full_name":"benweet/stackedit","owner":"benweet","description":"In-browser Markdown editor","archived":false,"fork":false,"pushed_at":"2023-07-04T16:12:06.000Z","size":37527,"stargazers_count":22168,"open_issues_count":704,"forks_count":2771,"subscribers_count":504,"default_branch":"master","last_synced_at":"2025-04-23T23:03:56.223Z","etag":null,"topics":["blogger","couchdb","dropbox","editor","gist","github","gitlab","google-drive","javascript","markdown","offline","stackedit","wordpress","zendesk"],"latest_commit_sha":null,"homepage":"https://stackedit.io/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/benweet.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}},"created_at":"2013-03-24T13:46:06.000Z","updated_at":"2025-04-23T21:35:31.000Z","dependencies_parsed_at":"2023-10-20T18:23:13.644Z","dependency_job_id":null,"html_url":"https://github.com/benweet/stackedit","commit_stats":{"total_commits":290,"total_committers":11,"mean_commits":"26.363636363636363","dds":0.503448275862069,"last_synced_commit":"46383b5b6a54b65b8720d786ed0a0518b9ad652d"},"previous_names":[],"tags_count":132,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benweet%2Fstackedit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benweet%2Fstackedit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benweet%2Fstackedit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benweet%2Fstackedit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benweet","download_url":"https://codeload.github.com/benweet/stackedit/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250528732,"owners_count":21445516,"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":["blogger","couchdb","dropbox","editor","gist","github","gitlab","google-drive","javascript","markdown","offline","stackedit","wordpress","zendesk"],"created_at":"2024-07-30T18:02:01.055Z","updated_at":"2025-04-23T23:04:09.253Z","avatar_url":"https://github.com/benweet.png","language":"JavaScript","readme":"# StackEdit\n\n[![Build Status](https://img.shields.io/travis/benweet/stackedit.svg?style=flat)](https://travis-ci.org/benweet/stackedit) [![NPM version](https://img.shields.io/npm/v/stackedit.svg?style=flat)](https://www.npmjs.org/package/stackedit)\n\n\u003e Full-featured, open-source Markdown editor based on PageDown, the Markdown library used by Stack Overflow and the other Stack Exchange sites.\n\nhttps://stackedit.io/\n\n### Ecosystem\n\n- [Chrome app](https://chrome.google.com/webstore/detail/iiooodelglhkcpgbajoejffhijaclcdg)\n- NEW! Embed StackEdit in any website with [stackedit.js](https://github.com/benweet/stackedit.js)\n- NEW! [Chrome extension](https://chrome.google.com/webstore/detail/ajehldoplanpchfokmeempkekhnhmoha) that uses stackedit.js\n- [Community](https://community.stackedit.io/)\n\n### Build\n\n```bash\n# install dependencies\nnpm install\n\n# serve with hot reload at localhost:8080\nnpm start\n\n# build for production with minification\nnpm run build\n\n# build for production and view the bundle analyzer report\nnpm run build --report\n```\n\n### Deploy with Helm\n\nStackEdit Helm chart allows easy StackEdit deployment to any Kubernetes cluster.\nYou can use it to configure deployment with your existing ingress controller and cert-manager.\n\n```bash\n# Add the StackEdit Helm repository\nhelm repo add stackedit https://benweet.github.io/stackedit-charts/\n\n# Update your local Helm chart repository cache\nhelm repo update\n\n# Deploy StackEdit chart to your cluster\nhelm install --name stackedit stackedit/stackedit \\\n  --set dropboxAppKey=$DROPBOX_API_KEY \\\n  --set dropboxAppKeyFull=$DROPBOX_FULL_ACCESS_API_KEY \\\n  --set googleClientId=$GOOGLE_CLIENT_ID \\\n  --set googleApiKey=$GOOGLE_API_KEY \\\n  --set githubClientId=$GITHUB_CLIENT_ID \\\n  --set githubClientSecret=$GITHUB_CLIENT_SECRET \\\n  --set wordpressClientId=\\\"$WORDPRESS_CLIENT_ID\\\" \\\n  --set wordpressSecret=$WORDPRESS_CLIENT_SECRET\n```\n\nLater, to upgrade StackEdit to the latest version:\n\n```bash\nhelm repo update\nhelm upgrade stackedit stackedit/stackedit\n```\n\nIf you want to uninstall StackEdit:\n\n```bash\nhelm delete --purge stackedit\n```\n\nIf you want to use your existing ingress controller and cert-manager issuer:\n\n```bash\n# See https://docs.cert-manager.io/en/latest/tutorials/acme/quick-start/index.html\nhelm install --name stackedit stackedit/stackedit \\\n  --set dropboxAppKey=$DROPBOX_API_KEY \\\n  --set dropboxAppKeyFull=$DROPBOX_FULL_ACCESS_API_KEY \\\n  --set googleClientId=$GOOGLE_CLIENT_ID \\\n  --set googleApiKey=$GOOGLE_API_KEY \\\n  --set githubClientId=$GITHUB_CLIENT_ID \\\n  --set githubClientSecret=$GITHUB_CLIENT_SECRET \\\n  --set wordpressClientId=\\\"$WORDPRESS_CLIENT_ID\\\" \\\n  --set wordpressSecret=$WORDPRESS_CLIENT_SECRET \\\n  --set ingress.enabled=true \\\n  --set ingress.annotations.\"kubernetes\\.io/ingress\\.class\"=nginx \\\n  --set ingress.annotations.\"cert-manager\\.io/cluster-issuer\"=letsencrypt-prod \\\n  --set ingress.hosts[0].host=stackedit.example.com \\\n  --set ingress.hosts[0].paths[0]=/ \\\n  --set ingress.tls[0].secretName=stackedit-tls \\\n  --set ingress.tls[0].hosts[0]=stackedit.example.com\n```\n","funding_links":[],"categories":["JavaScript","语言资源库","Uncategorized","Markdown Online Editors","Front End","Browser editor","编辑器","27. 富文本编辑器/Markdown编辑器/Markdown解析器 ##","github","wordpress","Apps","Repository","27. 富文本编辑器/Markdown编辑器/Markdown解析器","Tools \u0026 Resources"],"sub_categories":["JavaScript","Uncategorized","网络服务_其他","13.20 视差滚动(Parallax Scrolling) ###","Inactive / Archived","Editor","24.3 Web Sockets","108. StackEdit"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenweet%2Fstackedit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenweet%2Fstackedit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenweet%2Fstackedit/lists"}