Skip to content

Commit

Permalink
Fix a listening message typo
Browse files Browse the repository at this point in the history
Signed-off-by: Abderrahim SOUBAI-ELIDRISI <gx.coder@gmail.com>
  • Loading branch information
soub4i committed Feb 14, 2022
1 parent 657717e commit aec9e5e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion template/node16/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ app.options('/*', middleware);
const port = process.env.http_port || 3000;

app.listen(port, () => {
console.log(`node14 listening on port: ${port}`)
console.log(`node16 listening on port: ${port}`)
});


2 changes: 1 addition & 1 deletion template/node17/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ app.options('/*', middleware);
const port = process.env.http_port || 3000;

app.listen(port, () => {
console.log(`node14 listening on port: ${port}`)
console.log(`node17 listening on port: ${port}`)
});


0 comments on commit aec9e5e

Please sign in to comment.