single-spa.js.org
This repo contains the source code and documentation powering single-spa.js.org.
Getting started
Prerequisites
- 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
Installation
cd single-spa.js.orgto go into the project rootyarnto install the website's npm dependencies
Running locally
cd websitethen runyarn startto start the hot-reloading development server (powered by Docusaurus)open http://localhost:3000to open the site in your favorite browser
Contributing
Want to help improve the single-spa.js.org website? Checkout the steps below to learn how.
Create a branch
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
Make the change
- 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
Test the change
- If possible, test any visual changes in all latest versions of common browsers, on both desktop and mobile.
Push it
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.