* fix typos * fix typo * fix typo * fix typo * fix typos * fix typos * fix typos * fix typos * fix typos * fix typo * fix typo * chore: Update docs --------- Co-authored-by: Sidharth Vinod <sidharthv96@gmail.com>
3.9 KiB
Warning
THIS IS AN AUTOGENERATED FILE. DO NOT EDIT.
Please edit the corresponding file in /packages/mermaid/src/docs/community/development.md.
Contributing to Mermaid
The following documentation describes how to work with Mermaid in your host environment. There's also a Docker installation guide if you prefer to work in a Docker environment.
So you want to help? That's great!
Here are a few things to get you started on the right path.
Get the Source Code
In GitHub, you first fork a repository when you are going to make changes and submit pull requests.
Then you clone a copy to your local development machine (e.g. where you code) to make a copy with all the files to work with.
Fork mermaid to start contributing to the main project and its documentation, or search for other repositories.
Here is a GitHub document that gives an overview of the process.
Technical Requirements
The following documentation describes how to work with Mermaid in your host environment. There's also a Docker installation guide if you prefer to work in a Docker environment.
These are the tools we use for working with the code and documentation:
- volta to manage node versions.
- Node.js.
volta install node
- pnpm package manager.
volta install pnpm
- npx the packaged executor in npm. This is needed to install pnpm.
Follow the setup steps below to install them and start the development.
Setup and Launch
Switch to project
Once you have cloned the repository onto your development machine, change into the mermaid
project folder (the top level directory of the mermaid project repository)
cd mermaid
Install packages
Run npx pnpm install
. You will need npx
for this because volta doesn't support it yet.
npx pnpm install # npx is required for first install
Launch
npx pnpm run dev
Now you are ready to make your changes! Edit whichever files in src
as required.
Open http://localhost:9000 in your browser, after starting the dev server. There is a list of demos that can be used to see and test your changes.
If you need a specific diagram, you can duplicate the example.html
file in /demos/dev
and add your own mermaid code to your copy.
That will be served at http://localhost:9000/dev/your-file-name.html. After making code changes, the dev server will rebuild the mermaid library. You will need to reload the browser page yourself to see the changes. (PRs for auto reload are welcome!)
Verify Everything is Working
You can run the test
script to verify that pnpm is working and that the repository has been cloned correctly:
pnpm test
The test
script and others are in the top-level package.json
file.
All tests should run successfully without any errors or failures. (You might see lint or formatting warnings; those are ok during this step.)
Last Words
Don't get daunted if it is hard in the beginning. We have a great community with only encouraging words. So, if you get stuck, ask for help and hints in the Slack forum. If you want to show off something good, show it off there.