# init typescript
npx tsc --init
# install ts-node globally
# https://stackoverflow.com/questions/62096269/cant-run-my-node-js-typescript-project-typeerror-err-unknown-file-extension
# https://bobbyhadz.com/blog/typescript-unknown-file-extension-error
npm install ts-node --global
# execute .ts file
ts-node ./examples/provider.ts
Install web3.js using npm:
npm install web3@4.0.1-rc.1