How to fix: (node:12364) [DEP0111] DeprecationWarning: Access to process.binding('http_parser') is deprecated

Viewed 54188

ng serve -o shows the following error message:

- Generating browser application bundles...(node:12364) [DEP0111] DeprecationWarning: Access to process.binding('http_parser') is deprecated.
(Use `node --trace-deprecation ...` to show where the warning was created) 

Then the terminal shows: \ Generating browser application bundles (phase: emitting)...

But the browser never opening, it seems VSC is in an endless loop.

What can I do to fix this problem?

1 Answers

Version compatibility could be the issue. Downgrading node js version from 16.8.0 to 14.17.5 resolved my issue.

Related