An easy-to-configure, open-source Node.js web server
- Git
- Node.js (latest LTS version)
- Create a directory for Aluminum.
mkdir aluminum;
- Change to the new directory.
cd ./aluminum;
- Clone the Aluminum repository into the folder.
💡 Tip: To save disk space, you may want to use the
-depth
option to limit the number of commits that are cloned.
- [RECOMMENDED] For the latest Aluminum release
git clone --branch "latest" "https://github.com/NovaDevelopment/aluminum.git" "./";
- For a specific Aluminum release
git clone --branch "<release tag>" "https://github.com/NovaDevelopment/aluminum.git" "./";
- For the main branch (may be unstable; do not use in production)
git clone "https://github.com/NovaDevelopment/aluminum.git" "./";
Alternatively, you can
curl
the .zip source code file from a specific release on GitHub and then extract the archive into a folder usingunzip
or a similar utility.
- More steps coming soon...