Using Node's built-in watch mode.
Created
October 24, 2024 17:49
-
-
Save travishorn/58c034b8db69da955c7fb92990bc5212 to your computer and use it in GitHub Desktop.
Using Node's built-in watch mode.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("Hello, World!"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "node-watch", | |
"version": "0.1.0", | |
"scripts": { | |
"dev": "node --watch-path=src src/index.js" | |
}, | |
"type": "module" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment