-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Closed
Copy link
Description
Versions
- Versions:
[email protected], [email protected] nodemon -v:
$ npm view nodemon version
2.0.12- Operating system/terminal environment (powershell, gitshell, etc):
- Powershell terminal
$PSVersionTable
Name Value
---- -----
PSVersion 5.1.19041.1023
PSEdition Desktop
PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...}
BuildVersion 10.0.19041.1023
CLRVersion 4.0.30319.42000
WSManStackVersion 3.0
PSRemotingProtocolVersion 2.3
SerializationVersion 1.1.0.1- VSCode IDE
- Version: 1.58.2 (system setup)
Commit: c3f126316369cd610563c75b1b1725e0679adfb3
Date: 2021-07-14T22:10:15.214Z
Electron: 12.0.13
Chrome: 89.0.4389.128
Node.js: 14.16.0
V8: 8.9.255.25-electron.0
OS: Windows_NT x64 10.0.19043
- Version: 1.58.2 (system setup)
Expected behaviour
Application would restart as normal, killing process and rerunning npm start which kicks off nodemon using nodemon.json config
Actual behaviour
Application starts as normal and I see the proper output in VSCode debug console.

Changing the src/index.ts (uncommenting the code to add the "Hello World" endpoint) and saving the file does the following:
- Prints
[nodemon] restarting due to changes...to the VSCode debug window - Opens the
windows-kill.exewindow, minimized on my toolbar - Nothing else and doesn't restart the application
The changes are not redeployed, and the only way to proceed is to kill the process manually.

Steps to reproduce
I have attached this sample project here as the most basic application I could get to reproduce this issue.
Manual Steps
If you wish to do this from scratch, the steps I followed were:
- Make empty, temporary directory
npm init -ynpm i -D typescript ts-node nodemon @types/node @hapi/hapinpx tsc --init- Create
nodemon.json
{
"watch": ["src"],
"ext": "ts",
"exec": "node -r ts-node/register src/index.ts"
}- Update
package.jsonstart script
"scripts": {
"start": "nodemon"
},- Create
.vscode/launch.json
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Server",
"type": "pwa-node",
"outputCapture": "std",
"request": "launch",
"runtimeArgs": [
"run-script",
"start"
],
"runtimeExecutable": "npm",
"skipFiles": [
"<node_internals>/**"
],
},
]
}- Create sample Hapi server. Taken directly from https://hapi.dev/tutorials/?lang=en_US
"use strict";
const Hapi = require("@hapi/hapi");
const init = async () => {
const server = Hapi.server({
port: 3000,
host: "localhost",
});
server.route({
method: 'GET',
path: '/',
handler: (request, h) => {
return 'Hello World!';
}
});
await server.start();
console.log("Server running on %s", server.info.uri);
};
process.on("unhandledRejection", (err) => {
console.log(err);
process.exit(1);
});
init();{
run: false,
system: { cwd: 'c:\\OpenSesame\\tmp\\nodemon-example' },
required: false,
dirs: [ 'c:\\OpenSesame\\tmp\\nodemon-example\\src' ],
timeout: 1000,
options: {
dump: true,
watch: [ 'src', re: /src/ ],
exec: 'node -r ts-node/register src/index.ts',
ignore: [
'**/.git/**',
'**/.nyc_output/**',
'**/.sass-cache/**',
'**/bower_components/**',
'**/coverage/**',
'**/node_modules/**',
re: /.*.*\/\.git\/.*.*|.*.*\/\.nyc_output\/.*.*|.*.*\/\.sass\-cache\/.*.*|.*.*\/bower_components\/.*.*|.*.*\/coverage\/.*.*|.*.*\/node_modules\/.*.*/
],
monitor: [
'c:\\OpenSesame\\tmp\\nodemon-example\\src/**/*',
'!**/.git/**',
'!**/.nyc_output/**',
'!**/.sass-cache/**',
'!**/bower_components/**',
'!**/coverage/**',
'!**/node_modules/**'
],
ignoreRoot: [
'**/.git/**',
'**/.nyc_output/**',
'**/.sass-cache/**',
'**/bower_components/**',
'**/coverage/**',
'**/node_modules/**'
],
restartable: 'rs',
colours: true,
execMap: { py: 'python', rb: 'ruby', ts: 'ts-node' },
stdin: true,
runOnChangeOnly: false,
verbose: false,
signal: 'SIGUSR2',
stdout: true,
watchOptions: {},
execOptions: {
script: null,
exec: 'node -r ts-node/register src/index.ts',
args: [],
scriptPosition: null,
nodeArgs: undefined,
execArgs: [],
ext: 'ts',
env: {}
}
},
load: [Function],
reset: [Function: reset],
lastStarted: 0,
loaded: [ 'c:\\OpenSesame\\tmp\\nodemon-example\\nodemon.json' ],
watchInterval: null,
signal: 'SIGUSR2',
command: {
raw: { executable: 'node -r ts-node/register src/index.ts', args: [] },
string: 'node -r ts-node/register src/index.ts'
}
}
avispeng and yusoofsh