This is a walkthrough of Effect to see how it works.
I initialized following the quickstart:
npm init -y
npm install typescript --save-dev
npx tsc --init
npm install effect
touch index.tsAfterwards, I added the package.json script "start": "npx tsx index.ts".
You can then run npm start to run what is inside index.ts.