mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-21 19:41:33 +00:00
51 lines
1.9 KiB
Bash
Executable File
51 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# The following is a 3 column list of org, repo, and branch.
|
|
# - If the branch is NOT specified, then the README for that project
|
|
# will be pulled from npmjs.org instead and will reflect the latest
|
|
# release.
|
|
# - If the branch IS specified, it will be used to fetch the README.md
|
|
# from the given github repo. If that branch is NOT master, then the
|
|
# branch name will be appended to the local readme file name.
|
|
(cat <<LIST_END
|
|
expressjs body-parser master
|
|
expressjs compression master
|
|
expressjs connect-rid master
|
|
expressjs cookie-parser master
|
|
expressjs cookie-session master
|
|
expressjs cors master
|
|
expressjs errorhandler master
|
|
expressjs method-override master
|
|
expressjs morgan master
|
|
expressjs multer master
|
|
expressjs response-time master
|
|
expressjs serve-favicon master
|
|
expressjs serve-index master
|
|
expressjs serve-static master
|
|
expressjs session master
|
|
expressjs timeout master
|
|
expressjs vhost master
|
|
expressjs express master/examples
|
|
LIST_END
|
|
) | while read org repo branch; do
|
|
# Write the README.md to a file named after the repo
|
|
DEST="_includes/readmes/$repo.md"
|
|
# When fetching from a branch of a gh repo
|
|
GHURL="https://raw.githubusercontent.com/$org/$repo/$branch/README.md"
|
|
# When fetching from the latest release of a node module
|
|
NPMURL="https://registry.npmjs.org/$repo"
|
|
if [ -z "$branch" ]; then
|
|
# No branch means latest release, so fetch from npmjs.org
|
|
echo "fetching $org/$repo from latest npmjs.org release..."
|
|
curl -s $NPMURL | jq -r '.readme|rtrimstr("\n")' > $DEST
|
|
else
|
|
# This allows us to specify a branch other than master if we want to.
|
|
# In this case, the branch name is added to the readme name in the filename.
|
|
if [ "$branch" != "master" ]; then
|
|
DEST="_includes/readmes/$repo-$branch.md"
|
|
fi
|
|
echo "fetching $org/$repo/$branch from GitHub's raw content domain..."
|
|
curl -s $GHURL > $DEST
|
|
fi
|
|
done
|