rundown
v0.0.7
Published
Run TypeScript in Node.js, powered by Rolldown
Readme
Rundown

Run TypeScript in Node.js, powered by Rolldown.
Inspired by tsx.
- Available features
- Run (by giving a file path)
- Watch (
--watchor-w) - Extends Node.js REPL (by giving no arguments at all)
- Extends Node.js Test runner (by giving
--testor-t)
Usage
- 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.tsDevelopment
- Install dependencies
npm install- Build the project
npm run build