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:
- Demo Version:
WeasyCode-vX.X.X.zip
Contains all demo apps, pages, layouts, and components as seen in the live preview. - 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:
- Open your terminal or console, navigate to your workspace folder, and ensure you're in the same directory as
package.json. - Install project dependencies:
# Using npm npm install # Using Yarn yarn installThis command will install all required packages into the
node_modulesfolder. - Start the development server:
# Using npm npm run dev # Using Yarn yarn devAfter running the command, open your browser at
http://localhost:3000to 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.
