Run TypeScript in Node.js, powered by Rolldown.
Inspired by tsx.
- Available features
- Run (by giving a file path)
- Watch (
--watch
or-w
) - Extends Node.js REPL (by giving no arguments at all)
- Extends Node.js Test runner (by giving
--test
or-t
)
- Install
rundown
# Global install on your system
npm install -g rundown
# Local install for your project
npm install -D rundown
- Run TypeScript files
# Global usage
rundown index.ts
# Local usage
./node_modules/.bin/rundown index.ts
- Install dependencies
npm install
- Build the project
npm run build