Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ nodemon will emit events based on the child process.
- stderr - the stderr stream from the child process
- readable - stdout and stderr streams are ready ([example](https://github.com/remy/nodemon#pipe-output-to-somewhere-else))

Note that if you want to supress the normal stdout & stderr of the child, in favour
Note that if you want to suppress the normal stdout & stderr of the child, in favour
of processing the stream manually using the stdout/stderr nodemon events, pass
nodemon the option of `stdout: false`.

Expand Down
2 changes: 1 addition & 1 deletion faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ The workaround is to run the following command:
fsutil behavior set disablelastaccess 1
```

[Futher reading thread](https://github.com/remy/nodemon/issues/1354)
[Further reading thread](https://github.com/remy/nodemon/issues/1354)

## Error: Cannot find module 'internal/util/types'

Expand Down
2 changes: 1 addition & 1 deletion lib/cli/parse.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ function nodemonOption(options, arg, eatNext) {
options.pollingInterval = parseInt(eatNext(), 10);
} else

// Depricated as this is "on" by default
// Deprecated as this is "on" by default
if (arg === '--js') {
options.js = true;
} else
Expand Down
2 changes: 1 addition & 1 deletion lib/help/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ function help(item) {
}

// cleanse the filename to only contain letters
// aka: /\W/g but figured this was eaiser to read
// aka: /\W/g but figured this was easier to read
item = item.replace(/[^a-z]/gi, '');

try {
Expand Down
2 changes: 1 addition & 1 deletion lib/monitor/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ function run(options) {
});

// moved the run.kill outside to handle both the cases
// intial start
// initial start
// no start

// connect stdin to the child process (options.stdin is on by default)
Expand Down
2 changes: 1 addition & 1 deletion test/cli/exec.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ describe('nodemon exec', function () {
assert(cmd.string === 'node app.js', cmd.string);
});

it('should not expand index to non-existant index.js', function () {
it('should not expand index to non-existent index.js', function () {
var options = exec({ script: 'index' });
var cmd = toCmd(options);
assert(cmd.string === 'node index', cmd.string);
Expand Down