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/common
src/index.ts
export const NUMBER = 1;
package.json
of various apps (next app/react app/node app)"@repo/common": "*",