/weather-app

simple weather app using react + redux + saga

Primary LanguageJavaScript

weather-app

View the weather forecast by location

Setting up a project


Open the terminal go into the copied project. Writing the npm install command:

    cd weather-app
    npm install

Start the project


You can use the "start" script to start the project

    npm run start

or write to a manual command to run:

    npx cross-env NODE_ENV=development webpack-dev-server --mode development --open

Build a project in production


You can use the "start" script to start the project

    npm run build

or write to a manual command to run:

    cross-env NODE_ENV=production webpack --mode production