← Go Back

snippets

2025-01-06


there might be a better place for stuff like this but whatever

basic typescript starter thing

npm init -y; `
npm install typescript ts-node @types/node --save-dev; `
npx tsc --init; `
mkdir src; `
"console.log('hello world!');" | Out-File -Encoding utf8 src\index.ts; `
npx ts-node src/index.ts