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
git clone git@github.com:single-spa/single-spa.js.org.git
cd single-spa.js.org/website
to go into the website rootyarn
to install the website's npm dependencies
Running locally
cd website
then runyarn start
to start the hot-reloading development server (powered by Docusaurus)open http://localhost:3000
to 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 master
from any folder in your localsingle-spa.js.org
repositorygit pull origin master
to ensure you have the latest main codegit checkout -b the-name-of-my-branch
(replacingthe-name-of-my-branch
with a suitable name) to create a branch
Make the change
- Save the files and check in the browser
- Changes to files in
website/pages/en
will hot-reload - Changes to markdown files in
docs
will hot-reload - Changes to
siteConfig.js
andsideBards.json
will 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 message
with 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.