This repo contains the source code and documentation powering single-spa.js.org.
- Git
- Node: install version 8.4 or greater
- Yarn: See Yarn website for installation instructions
- A fork of the repo (for any contributions)
- A clone of the single-spa.js.org repo on your local machine
git clone [email protected]:single-spa/single-spa.js.org.gitcd single-spa.js.org/websiteto go into the website rootyarnto install the website's npm dependencies
cd websitethen runyarn startto start the hot-reloading development server (powered by Docusaurus)open http://localhost:3000to open the site in your favorite browser
Want to help improve the single-spa.js.org website? Checkout the steps below to learn how.
git checkout masterfrom any folder in your localsingle-spa.js.orgrepositorygit pull origin masterto ensure you have the latest main codegit checkout -b the-name-of-my-branch(replacingthe-name-of-my-branchwith a suitable name) to create a branch
- Save the files and check in the browser
- Changes to files in
website/pages/enwill hot-reload - Changes to markdown files in
docswill hot-reload - Changes to
siteConfig.jsandsideBards.jsonwill not hot-reload
- If possible, test any visual changes in all latest versions of common browsers, on both desktop and mobile.
git add . && git commit -m "My message"(replacingMy messagewith a commit message, such asFixed header logo) to stage and commit your changesgit push my-fork-name the-name-of-my-branch- Go to the single-spa.js.org repo and you should see recently pushed branches.
- Follow GitHub's instructions.
- If possible, include screenshots of visual changes.