node-dev icon indicating copy to clipboard operation
node-dev copied to clipboard

Zero-conf Node.js reloading

Results 38 node-dev issues
Sort by recently updated
recently updated
newest added

Watching works only with --poll in docker, so maybe it is reasonable to introduce some more efficient watching in containers.

Is there a way to explicitly monitor files or directories for changes than the ones that were 'require'ed via the entry point? My use cases would be, I have a...

I'm using child_process's fork method to instantiate a subprocess, like so: ``` fork(path.join(__dirname, './worker.ts')); ``` The problem is that when building (transpiling) my project, a `MODULE_NOT_FOUND` is thrown because `worker.ts`...

When using the `experimental-loader` option, auto use internal ESM loader for the file. ``` node-dev --experimental-loader ts-node/esm/transpile-only ./index.ts ```

would be nice if there were an API. i'd like to embed a server within a server and have the sub app automatically restart itself

I'd think this would improve the user experience quite a bit. As an example the first thing I do when trying to use a new tool is to use --help...

is there a way to exit on error instead of hanging?

Great tool. I noticed after adding - webpack - babel to my project and runing `node-dev` in some cases it "transpile" es6 file and sometimes not. I could not figure...

```typescript var cmd = nodeArgs.concat(wrapper, script, scriptArgs); child = fork(cmd[0], cmd.slice(1), { cwd: process.cwd(), env: process.env }); ``` should be ```typescript var cmd = nodeArgs.concat(wrapper, script, scriptArgs); child = fork(cmd[0],...

I have a Typescript project that compiles the front-end and back-end in one pass. The problem is that the Typescript compiler touches all files, therefor node-dev always restarts even if...