{"id":13554291,"url":"https://github.com/TailorDev/monod","last_synced_at":"2025-04-03T06:31:29.451Z","repository":{"id":92451350,"uuid":"53143414","full_name":"TailorDev/monod","owner":"TailorDev","description":":notebook: Our cool, secure, and offline-first Markdown editor.","archived":true,"fork":false,"pushed_at":"2020-01-25T15:01:21.000Z","size":3455,"stargazers_count":874,"open_issues_count":28,"forks_count":51,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-01-23T06:34:24.678Z","etag":null,"topics":["markdown-editor","offline-first","secure"],"latest_commit_sha":null,"homepage":"https://monod.lelab.tailordev.fr/","language":"JavaScript","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/TailorDev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-03-04T15:06:56.000Z","updated_at":"2024-12-25T06:04:33.000Z","dependencies_parsed_at":"2023-06-01T03:30:37.987Z","dependency_job_id":null,"html_url":"https://github.com/TailorDev/monod","commit_stats":null,"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TailorDev%2Fmonod","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TailorDev%2Fmonod/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TailorDev%2Fmonod/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TailorDev%2Fmonod/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TailorDev","download_url":"https://codeload.github.com/TailorDev/monod/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246948026,"owners_count":20859365,"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":["markdown-editor","offline-first","secure"],"created_at":"2024-08-01T12:02:44.157Z","updated_at":"2025-04-03T06:31:25.116Z","avatar_url":"https://github.com/TailorDev.png","language":"JavaScript","readme":"Monod\n=====\n\n[![Greenkeeper badge](https://badges.greenkeeper.io/TailorDev/monod.svg)](https://greenkeeper.io/)\n\n[![Circle CI](https://circleci.com/gh/TailorDev/monod.svg?style=svg)](https://circleci.com/gh/TailorDev/monod)\n\n![Build Status](https://saucelabs.com/browser-matrix/willdurand.svg)\n\n---\n\n## Hi! I'm Monod, the Markdown Editor!\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"doc/images/presentation.gif\"\u003e\n\u003cp\u003e\n\n**Monod** is a (relatively) **secure** and **offline-first** Markdown editor we\nhave built at TailorDev in order to learn\n[React.js](https://facebook.github.io/react/) (and a bunch of other JavaScript\ntools and libraries). We dedicated two **Le lab** sessions to build the\nfoundations of Monod:\n\n* [Introducing Le lab with “Monod”, our Markdown\n  Editor](https://tailordev.fr/blog/2016/03/11/introducing-le-lab-with-monod-our-markdown-editor/)\n* [Le lab #2 — Offline-First, Document Sharing, Templates: Monod is Back (not in\n  Black)](https://tailordev.fr/blog/2016/04/15/le-lab-2-offline-first-document-sharing-templates-monod-is-back/)\n\n---\n\n## Usage\n\nEither use our public instance at: https://monod.lelab.tailordev.fr/, or\nself-host Monod at home, on your server, or even on Heroku:\n\n[![Deploy to\nHeroku](https://www.herokucdn.com/deploy/button.png)](https://heroku.com/deploy)\n\n## Documentation\n\nDocumentation can be found in the [`doc/`](doc/writing.md) directory.\n\n## Installation\n\n### Production\n\n    $ git clone https://github.com/TailorDev/monod.git\n    $ npm install # will run `npm run build`\n    $ npm prune --production\n\nWe use this\n[Dockerfile](https://github.com/TailorDev/dockerfiles/blob/master/node/Dockerfile)\nto run Monod in production (which runs `npm run start` from the Monod root\ndirectory).\n\n### Development\n\n    $ git clone https://github.com/TailorDev/monod.git\n    $ npm install\n    $ npm run dev\n\nThe last command runs the development server at\n[`http://localhost:8080`](http://127.0.0.1:8080), and uses Hot Module\nReplacement. You can override the default host and port through the env\nvariables `HOST` and `PORT`.\n\nYou can also start the server by running:\n\n    $ MONOD_DATA_DIR=/path/to/data npm run start\n\n`MONOD_DATA_DIR` is an environment variable that configures where the server\nreads and writes Monod's data. It defaults to `./data/` (so be sure\nto create that directory if you start the server with just `npm run start`).\n\nYou are all set!\n\n### Other Commands\n\n#### `npm run build`\n\nBuilds the client-side application in `build/` (production ready)\n\n#### `npm run stats`\n\nWebpack build + generate a JSON file with metrics. [We blogged about why this\ncan be useful](https://tailordev.fr/blog/2016/03/17/loading-dependencies-asynchronously-in-react-components/).\n\n#### `npm run lint`\n\nRuns [ESLint](http://eslint.org/).\n\n#### `npm run lint:fix`\n\nFix all ESLint problems.\n\n\n## Requirements\n\nWe use `node` 8.0+ and `npm` 5.0+.\n\n\n## Contributing\n\nPlease, see the [CONTRIBUTING](CONTRIBUTING.md) file.\n\n## Running the Tests\n\n    $ npm run test\n\nYou can also \"watch\" them:\n\n    $ npm run test:watch\n\nCode coverage is available by running:\n\n    $ npm run cov\n\n\n## Contributor Code of Conduct\n\nPlease note that this project is released with a [Contributor Code of\nConduct](http://contributor-covenant.org/). By participating in this project you\nagree to abide by its terms. See [CODE_OF_CONDUCT](CODE_OF_CONDUCT.md) file.\n\n## License\n\nMonod is released under the MIT License. See the bundled [LICENSE](LICENSE.md)\nfile for details.\n","funding_links":[],"categories":["JavaScript","others"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTailorDev%2Fmonod","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FTailorDev%2Fmonod","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FTailorDev%2Fmonod/lists"}