WeasyCode - Multipurpose Creative NextJs Template

Creative

Installation

Step-by-step instructions to set up WeasyCode on your local development environment.

1. Preparation

Before starting the installation, ensure you have a dedicated folder on your machine where the WeasyCode source can be extracted and managed.

2. Choose a Version to Install

Inside the downloaded .zip file, you'll find two main packages:

  1. Demo Version: WeasyCode-vX.X.X.zip
    Contains all demo apps, pages, layouts, and components as seen in the live preview.
  2. Starter Version: WeasyCode-starter-vX.X.X.zip
    Includes only the essential parts needed to start your project without demo content.

3. Installation Steps

Follow these steps to set up the project locally:

  1. Open your terminal or console, navigate to your workspace folder, and ensure you're in the same directory as package.json.
  2. Install project dependencies:
    # Using npm
    npm install
    
    # Using Yarn
    yarn install

    This command will install all required packages into the node_modules folder.

  3. Start the development server:
    # Using npm
    npm run dev
    
    # Using Yarn
    yarn dev

    After running the command, open your browser at http://localhost:3000 to view the project.

4. Tips

If you plan to use additional third-party libraries, the setup process is straightforward. WeasyCode is flexible and allows you to integrate extra tools seamlessly.