Skip to content
Type something to search...

Installation Guide

Follow these steps to set up and start using the theme.

Prerequisites

Before you begin, ensure your system meets the following requirements.

Install Node.js

Looka requires Node.js (LTS version) to work. Node.js lets you run JavaScript code on your computer. Here’s how to install it based on your operating system:

Follow these steps to install Node.js on Windows:

  1. Download the latest LTS version of Node.js from the official website: Node.js Downloads
  2. Run the installer after it’s downloaded, and follow the on-screen instructions. The installer will guide you through the process.
  3. After installation, open the Command Prompt (search for “cmd” in the Start menu) and verify the installation by typing the following command and pressing Enter:
Terminal window
node -v

If Node.js was installed correctly, you’ll see the version number (e.g., v22.13.1). This confirms that Node.js is ready to use!

💡 Need help? Check out the official Node.js installation guide.


Setting Up Looka

Once Node.js is installed, follow these steps to set up Looka:

Install Dependencies

Navigate to your project directory (the main theme folder) and run:

Terminal window
npm install

This will install all the necessary dependencies for Looka.

Start the Development Server

To start the local development server and view your site on your computer, run:

Terminal window
npm run dev

🔹 Your site will be available at http://localhost:4321 (or the customized port). That’s a solid start! If you want to add a bit more context or guidance, you could expand it like this:

Create a Production Build

To generate an optimized production build of your site, run the following command in your project root:

Terminal window
npm run build

This will compile your project, optimize assets, and prepare everything for deployment. The output will be located in the dist/ folder by default.

Preview the Production Build

To see how your site will look in the final production version, run:

Terminal window
npm run preview

This allows you to preview how the theme will look once it’s live on the internet.


🚀 You’re all set! Now you can start customizing Looka to fit your needs. 🎨