A Node.js clone of neofetch/fastfetch. This application displays system information along with custom ASCII
- Displays detailed system information (CPU, memory, disk, etc.)
- Shows custom ASCII art based on the operating system
- Support for Linux, Windows, macOS and Android environments
- Colored terminal interface
- Node.js 12 or higher
- For Android use: Termux or similar environment with Node.js installed
# Clone the repository
git clone https://github.com/SterTheStar/nodefetch.git
cd nodefetch
# Install dependencies
npm install# Download and extract the Linux package
unzip nodefetch-linux.zip
# Run the installer
sudo ./install.sh- Download and extract
nodefetch-windows.zip - Run
install.batas administrator
# Run the application
node index.js
# Or use npm
npm startYou can customize the ASCII art by editing the ascii-loader.js file and modifying the asciiArts object.
To build the application for different platforms:
# Build for all platforms
npm run build:all
# Build for specific platforms
npm run build:linux-x64 # Linux 64-bit
npm run build:windows-x64 # Windows 64-bitGPL-3.0