Theo Cerutti
Theo Cerutti

Reputation: 970

Create-react-app: what is the server (of npm start script)?

I want to understand what is the server created by the npm start command. Is it like a nodejs server or something like that ?

Thanks!

Upvotes: 0

Views: 36

Answers (1)

Saqib Naseeb
Saqib Naseeb

Reputation: 741

Yes, It starts nodejs server. As given in the docs:

https://docs.npmjs.com/cli/start.html

Upvotes: 2

Related Questions