Skip to content

Web site template with React, Webpack, hot module replacement, and Express. MSDeploy to prepare deployment for Azure Web Apps.

Notifications You must be signed in to change notification settings

zymplsi/generator-azure-web-app

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Azure Web App Yeoman

generator-azure-web-app

npm version Node.js dependencies npm downloads

Deploy to Azure

Minimalist Azure Web App generator: Webpack/Rollup + React + Express, deployable to standalone Node.js, Azure App Service, Docker, and IIS.

Why us?

Modern websites are not just bunches of plain text files. Build process increases page load efficiency and overall page performance.

But everyone build and promote their own build process. There are few reasons you should choose us:

  • Scaffold with Yeoman, yo azure-web-app
  • Choose your own faith: we only include React
  • Bundle with the best bundler
    • Webpack for development, hot module replacement means less page refresh
    • Experimental support with Rollup
  • Support multiple deployment scenarios

Try it out in 3 easy steps

  1. Fork this repository
  2. Click Deploy to Azure
  3. Push your changes and see it continuously deploy to Azure

It takes about 5-10 minutes for the first build, have a little patience.

How to develop professionally

  1. Create a new Web App project
  2. Run local development server
  3. Develop locally
  4. Prepare for production deployment
  5. Deploy to target servers
  6. Update the scaffolding

Create a new Web App Project

For the very first time, run npm install -g yo generator-azure-web-app to install Yeoman and our scaffolding.

Run yo azure-web-app to create a new project.

Run local development server

Run npm start, the development server will listen to port 80 and available at http://localhost/.

To change the port to 8080, either set environment variable PORT to 8080, or run npm start -- --port 8080.

Develop locally

After adding new packages or modifying server code, don't forget to restart the development server to pick up new changes.

Prepare for production deployment

Run npm run build, to bundle JavaScript files, crush images, etc. It outputs to dist/website/.

Optional: Using Rollup as bundler in production mode

Instead of using Webpack for bundling, you can use Rollup instead.

Using rollup as bundler is experimental. Please file us an issue if you run into any problems.

There are few ways to select your bundler:

  • Run npm run build -- --bundler rollup
  • Set environment variable NPM_CONFIG_BUNDLER to rollup or webpack
  • Modify .npmrc and set bundler = "rollup"
  • During Yeoman scaffold, set bundler to rollup

Deployment

Before doing any deployment, don't forget to build your project by running npm run build.

The project supports multiple deployment scenarios, we will cover each separately.

Deploy as a standalone Node.js

Run node dist/website/index.js to run as a standalone Node.js.

To deploy to your SaaS provider, copy everything under dist/website/ to your provider.

Deploy to Azure App Service

Azure App Service support continuous deployment or traditional MSDeploy. For small teams, we recommend continuous deployment.

Thru continuous deployment

Azure Web App comes with handy continuous deployment feature. When you push/save your code, Azure Web App will pickup new changes from GitHub, local Git (hosted on Azure), Dropbox, OneDrive, etc.

Follow steps below for first time setup for GitHub deployment.

  1. Commit your project to GitHub
  2. Click here to create a new Web App using Azure Portal
  3. Update the Deployment Option
  4. Point it to your GitHub repository

When deploying using continuous deployment, the project will be build on Azure using Project Kudu. The build output will be at /site/wwwroot/dist/website.

We customized azuredeploy.json to modify the application virtual path from /site/wwwroot to /site/wwwroot/dist/website.

Thru Visual Studio Team Services

Deploy thru Azure continuous deployment is limited and asynchronous. This makes the option unideal for medium or large teams.

We recommend VSTS Release Management for advanced deployment. During the deployment, you can also add BVTs, performance tests, approval process, rollback, etc.

Follow steps for VSTS here for advanced deployment scenario.

Thru MSDeploy

If you use CI/CD tools other than Azure and VSTS, you may want to integrate with MSDeploy.

  1. Run npm run build to build the project
  2. Run npm run pack to pack the deployment as a MSDeploy ZIP file
  3. Download publish settings file, either from Azure Dashboard or using Azure PowerShell
  4. Run npm run deploy -- --publish-settings=yoursite.PublishSettings to deploy with MSDeploy

To use a specific version of Node.js, don't forget to modify iisnode.yml manually.

Deploy to Docker

We have prepared Dockerfile for deploying to Docker. During Yeoman scaffold, you can select one of the supported image types:

Run docker build . at the project root to build your docker image.

Before building a Docker image, don't forget to run npm run build to build your website

Deploy to IIS

You can also deploy the project to an on-premise or hosted IIS.

  1. Make sure Node.js and iisnode is installed on the target server
  2. Run npm run pack to pack the deployment as a MSDeploy ZIP file
  3. Use MSDeploy to deploy your package

The following MSDeploy command-line switches can be used to deploy the package to an IIS box.

"C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\msdeploy.exe"
  -verb:sync
  -source:package="dist\packages\web.zip"
  -dest:
    auto,
    ComputerName="https://<server>:443/msdeploy.axd?site=<appname>",
    UserName='<username>',
    Password='<password>',
    AuthType='Basic'
  -setParam:name="IIS Web Application Name",value="<appname>"

Update the scaffolding

We update our scaffolding from time to time. To update your existing project, rerun yo azure-web-app and scaffold again. Yeoman will automatically download the latest scaffolding from npm.

Don't worry, Yeoman will prompt to overwrite a file if it should be replaced.

Support of Internet Explorer 8

Although the user base of IE8 is fading, in some cases, you may still need to support older browsers. Follow the steps here to enable support of IE8.

Roadmap

These are items we are working on or under consideration:

  • Add pngout to npm run build
  • Continuous deployment on Azure App Service
    • npm install should build
    • .deployment file for Kudu to specify project folder at dist/website/
  • Scaffold with Yeoman
  • Use a single package.json if possible
  • Host development server programmatically
  • Bundle using Rollup
  • Uglify production bundle.js
    • Uglify Rollup build
    • Uglify Webpack build
  • Steps to deploy from VSTS Release Management
  • Try out on App Service for Linux
  • Upgrade to Webpack 2
  • Move IE8 support into a Yeoman switch
  • Move development server code out of /dist
  • Reduce the codebase
    • Move to a popular configuration package, e.g. config
    • Consider remove gulp clean and gulp rebuild
  • Sample code for server-side rendering
  • Include Jest and npm test script
  • Consider glamor for CSS bundling
  • Consider restify in addition to Express

Roadblocks

It is not an easy task to build a scaffolding that support lots of deployment scenarios. You can find all the roadblocks here.

FAQs

  1. After deploying to Azure Web App, it say directory browsing is not allowed.
    • During first deployment, do not browse to the web site until the deployment is ready. Otherwise, it will show 404, until you restart the server.
  2. How about CSS/LESS/SASS?
    • We believe bundler should only bundle JS files and not CSS or other assets. Thus, we did not preconfigure the scaffolding with style-loader
    • For modern CSS inlining, we prefer glamor or aphrodite. Please note that IE8 might not work with these modern CSS inliners

Contributions

Like us? Star us.

Want to make it better? File an issue to us.

Working on this scaffolding

If you want to develop or debug this scaffolding, follow these steps:

  1. Run npm uninstall generator-azure-web-app -g to uninstall any installed scaffolding
  2. Run git clone https://github.com/compulim/generator-azure-web-app.git to clone the repository
  3. Run npm link . to link-install this copy, instead of the official one from npm registry

Next time, when you run Yeoman to generate a new azure-web-app project, it will use your copy of scaffolding you cloned.

About

Web site template with React, Webpack, hot module replacement, and Express. MSDeploy to prepare deployment for Azure Web Apps.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 98.0%
  • HTML 1.8%
  • CSS 0.2%