A lot of times you need a module that can be shared by both frontend and backend apps
packages/common modulecd packages
mkdir common
npm init -y
npx tsc --init
@repo/commonsrc/index.tsexport const NUMBER = 1;
package.json of various apps (next app/react app/node app)"@repo/common": "*",