Feb 2022 - March 2023 Conduct
Node.js is a popular runtime environment for executing JavaScript code outside of a browser.
npm is the package manager for Node.js, used to install, manage, and share packages of code.
Docsify is a lightweight documentation generator that can turn your markdown files into a beautiful website.
Download the Windows Installer from the official Node.js website.
Double-click the downloaded file to start the installation wizard and follow the prompts.
Open Command Prompt and run the following command to check if Node.js is installed:
node -v
If Node.js is installed, you will see its version number printed to the console.
brew install node
Alternatively, you can download the Linux Binaries from the official Node.js website.
Open Terminal and run the following command to check if Node.js is installed:
node -v
sudo apt-get install nodejs
node -v
npm is installed automatically with Node.js.
To check if npm is installed, open Terminal or Command Prompt and run the following command:
npm -v
npm install -g docsify-cli
This command installs Docsify globally on your system, making it available from anywhere in the terminal.
To check if Docsify is installed, run the following command:
docsify -v
Congratulations!
You have successfully installed Node.js, npm, and Docsify on your system.
Start a New project:
docsify init your-project
Serve it locally:
docisfy serve your-project
I built this using Docsify.
You can now start to generate your websites.