Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

how to give port for react application

//If you don't want to set the environment variable, another option is to modify the scripts part of package.json from:

"start": "react-scripts start"
//to

//Linux (tested on Ubuntu 14.04/16.04) and MacOS (tested by aswin-s on MacOS Sierra 10.12.4):

"start": "PORT=3006 react-scripts start"
//or (may be) more general solution by IsaacPak

"start": "export PORT=3006 react-scripts start"
//Windows 

"start": "set PORT=3006 && react-scripts start"
 
PREVIOUS NEXT
Tagged: #give #port #react #application
ADD COMMENT
Topic
Name
9+7 =