[ ] Regression
[x] Bug report
[ ] Feature request
[ ] Documentation issue or request
[ ] Support request => Please do not submit support request here, instead post your question on Stack Overflow.
When scaffolding a brand new nestjs
project either from nest-cli
or nestjs/typescript-starter
, npm install
, and npm run start
works as expected. However, when the terminal window is simply resized (yes, resized), the process would consistently crash and produce the following error:
$ npm run start
> [email protected] start C:\dev\temp\testnest2
> ts-node -r tsconfig-paths/register src/main.ts
[Nest] 158684 - 2018-4-23 15:40:49 [NestFactory] Starting Nest application...
[Nest] 158684 - 2018-4-23 15:40:49 [InstanceLoader] AppModule dependencies initialized +5ms
[Nest] 158684 - 2018-4-23 15:40:49 [RoutesResolver] AppController {/}: +44ms
[Nest] 158684 - 2018-4-23 15:40:49 [RouterExplorer] Mapped {/, GET} route +1ms
[Nest] 158684 - 2018-4-23 15:40:49 [NestApplication] Nest application successfully started +1ms
internal/child_process.js:392
throw errnoException(err, 'kill');
^
Error: kill ENOSYS
at _errnoException (util.js:1024:11)
at ChildProcess.kill (internal/child_process.js:392:13)
at process.<anonymous> (C:\dev\temp\testnest2\node_modules\ts-node\dist\bin.js:54:93)
at emitNone (events.js:106:13)
at process.emit (events.js:208:7)
at Signal.wrap.onsignal (internal/process.js:208:44)
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! [email protected] start: `ts-node -r tsconfig-paths/register src/main.ts`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the [email protected] start script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\xxx\AppData\Roaming\npm-cache\_logs\2018-04-23T22_40_55_016Z-debug.log
I've tested on ConEmu Bash, Command Prompt, and VS Code integrated terminal. They all exhibit the same issue.
The nestjs
process should continue to run and not be affected.
Open a terminal:
$ git clone https://github.com/nestjs/typescript-starter
cd typescript-starter
npm install
npm run start
As soon as you resize the terminal window, the process crashes and produces the error specified above.
Nest version: 5.0.4
For Tooling issues:
- Node version: v8.9.3
- Platform: Windows 10 Enteprise 2016 LTSB
Others:
I think you should have a look at this issue since it seems that issue with ts-node
not nestjs.
Hope this helps
I updated ts-node to the latest version and it appears to have solved it. Wonder if the latest version will cause any issues with nestjs.
Thank you for the tip!
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
I think you should have a look at this issue since it seems that issue with
ts-node
not nestjs.Hope this helps