:wave: Hello, team! I am quite new to open source ...
# ask-questions
l
👋 Hello, team! I am quite new to open source and would like to contribute to some project. While trying to clone the code of https://github.com/growthbook/growthbook/, I am facing some issue. Even after installing node_modules, it shows this error while running yarn dev:
| error - ./components/ProtectedPage.tsx:13:0
 |
*Module not found*: Can't resolve '@growthbook/growthbook-react'
 |   11 | import track from "../services/track";  |   12 | import { OrganizationSettings } from "back-end/types/organization";  |
*>* 13 | import { useGrowthBook } from "@growthbook/growthbook-react";
 |   14 | import { useRouter } from "next/router";  |   15 | import { isCloud } from "../services/env" Can anyone help me out, and guide me too?
f
Hi Nitesh! That's awesome you want to help contribute. You'll need to run a few commands to finish getting set up:
Copy code
yarn workspace @growthbook/growthbook build
yarn workspace @growthbook/growthbook-react build
l
Thank you @future-teacher-7046 🙂