Temon is a TypeScript runner, bundler, and watcher that combines esbuild and nodemon into a single CLI tool. Current stable version is 1.3.4, with active development. It differentiates from alternatives (e.g., ts-node, tsx) by offering integrated bundling via esbuild and automatic restart via nodemon, while being lightweight and easy to configure. Ideal for rapid development and prototyping.
npm install temonNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Local install with peer deps, then run a TypeScript file with bundling, minification, and watch mode.
Run 'npm install --save-dev esbuild nodemon temon' for a local install.
Ensure the --build path is specified correctly; nodemon watches the input file but restarts based on output file changes.
Example: npx temon "index.ts --test" --watch
npm install --save-dev esbuild
npm install --save-dev nodemon