Set up the project locally
Follow the steps below to start your own version of Kitty Items.

Before moving to the next step, ensure you have the following tools installed:
Ensure you have NodeJS installed. Version 16+ is required.
1> node -v23v16.x.x
📣 Tip: Need to manage different versions of NodeJS? Try using NVM.
Ensure you have the Flow CLI. Version 0.32.3+ is required.
1> flow version23Version: v0.32.3
To get started, clone the project to your machine:
1git clone https://github.com/onflow/kitty-items.git
A new folder, kitty-items
, will be created. You will work in this folder, so navigate into it:
1cd kitty-items
In the project directory, run the following command to install all dependencies:
1npm install
Note: This process may take a few seconds and you will see some logs. This is expected.
Once the installation is completed, you are ready to start the project.
In case you are on an Apple M1 machine, you have to install another package to run the web application on your system.
If you are not aware of the system you are running, run the following command in your terminal:
1> npx envinfo --system23npx: installed 1 in 1.161s45System:6OS: macOS 12.2.17CPU: (8) x64 Apple M1 Pro8Memory: 29.95 MB / 16.00 GB9Shell: 5.8 - /bin/zsh
If the CPU mentions M1
, you need to run this step.
1# move to the web folder2cd web/34# install package5npm i @next/swc-darwin-arm6467# move back to the project root8cd ..
Note: This installation will fail if you are not on an Apple M1 machine. If you are on an Apple M1 machine and skip this step, your web application will not start successfully.
🚀