You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the repository of the website expressjs.com. It is hosted directly from the repository as a GitHub Pages website.
Contributing
Any person who wants to contribute to the Website is welcome! Please read Contributors' Guide for more information on contributing to the Express.js documentation.
Translations
If you're interested in contributing to the site's translations, you can find more information here.
Build the website locally
Note
If you're only making changes to the content, you most likely won't need to run the site locally.
To preview the website locally, we have two options: using Docker or using Bundler.
Using Docker
Tip
You can run make help to obtain detailed information on how to use our make commands.
Ensure that you have Docker and Make installed.
Run make build to build the project.
Run make serve to serve the project, this include live reloading so any change will be reflected (it can take a while, check the logs).
Run make clean to remove the docker images and resources generated.
Navigate to the cloned repository directory and run the following command:
$ bundle install
Bundler will look in the Gemfile for which gems to install. The github-pages gem includes the same version of Jekyll and other dependencies as used by GitHub Pages, so that your local setup mirrors GitHub Pages as closely as possible.